Tooltip hints for new features: mobile app implementation
Tooltip hints solve the problem of invisible features: statistics and approach
After a major update, users don’t notice a new button in the toolbar. The reason is not bad design but the lack of a visual hint. Tooltip is a compact pop-up element that points to a new feature. Unlike modal windows, it does not block the interface and requires a single tap to dismiss. According to our data, tooltips are 2.5 times more effective than modal windows for introducing new features. Proper implementation reduces support queries by 30–50%, and conversion for the new feature grows 2–3 times. For a mid-size app with 100k users, this can translate to $10k–$20k annual savings on support costs. These numbers are confirmed by A/B tests on 15+ projects, including fintech and social networks.
Problem: the button exists but is not seen
Even a perfectly designed interface fails if the user doesn’t know about the new feature. Statistics from practice: after releasing an update without hints, only 15% of users find the new button on their own. A tooltip raises this figure to 70% within the first week. Tooltips are 3 times more likely to be noticed than static icons. Implementing a queue of 3 hints increases conversion by 20% compared to a single display.
Technical implementation across different platforms
Why a custom tooltip on Android is preferable to Material3?
Material3 PlainTooltip and RichTooltip (since version 1.1.0) only work with TooltipBox and do not provide full control over positioning. For arbitrary placement, use Popup with onGloballyPositioned. On iOS, on the other hand, the system .popover in SwiftUI covers 80% of scenarios.
SwiftUI (iOS 15+, Swift 5.9)
For simple cases, use the .popover(isPresented:) modifier. If a custom arrow and positioning relative to a target are needed, create a ViewModifier with ZStack + GeometryReader. The system UIToolTip only works with pointer (iPad + trackpad), so for smartphones use overlay with anchorPreference. Key point: calculate target coordinates in global space via GeometryProxy.frame(in: .global).
Implementation details in SwiftUI with example
struct TooltipModifier: ViewModifier { @Binding var isPresented: Bool let text: String func body(content: Content) -> some View { content.overlay( GeometryReader { proxy in if isPresented { // кастомный тултип с позиционированием TooltipBubble(text: text) .position(x: proxy.size.width/2, y: proxy.size.height + 20) .onAppear { DispatchQueue.main.asyncAfter(deadline: .now() + 2) { isPresented = false } } } } ) } } UIKit
Create a UIView bubble with a CAShapeLayer for the arrow. Position it using convert(_:to:) and add to window.addSubview(). Important: add it to the window, not to the superview, otherwise the bubble gets clipped when the parent uses clipsToBounds.
Jetpack Compose (Android, Kotlin)
Use Popup with a custom composable and measure via onGloballyPositioned. Material3 PlainTooltip and RichTooltip (since version 1.1.0) only work with TooltipBox and do not allow full control. For arbitrary positioning, implement your own: Popup with alignment = Alignment.TopStart and offset based on target coordinates.
React Native (TypeScript)
The library react-native-walkthrough-tooltip is a quick solution. For full control, use a custom Modal with transparent={true} and animationType="fade". Calculate position using measure() on the ref of the target element.
Approach comparison
| Platform | Tool | Customization | Complexity |
|---|---|---|---|
| iOS (SwiftUI) | .popover |
Medium | Low |
| iOS (UIKit) | UIView + window |
High | Medium |
| Android (Compose) | Popup + onGloballyPositioned |
Full | Medium |
| React Native | Modal + measure() |
High | Medium |
How to properly organize a hint queue?
Note: when there are multiple features, show tooltips one by one. Scenario: the app loads a list of hint configs from UserDefaults. If the flag tooltip_feature_X_shown is absent, add to queue. Show the first, wait for dismissal, then after 300–500 ms show the next. Do not show during animations or navigation—track state via a coordinator. A delay before the first display should be 500–800 ms after the screen loads, otherwise the instruction overlay overlaps with content that hasn’t rendered yet. For comparison, using a fixed 1-second delay reduces positioning accuracy by 15%.
| Situation | Recommended delay | Reason |
|---|---|---|
| First display after load | 500-800 ms | Let content render |
| Between tooltips in queue | 300-500 ms | Avoid overlap |
| During navigation | Postpone until finished | Prevent positioning failure |
Step-by-step implementation plan
- Analytics – identify features requiring hints.
- Design – configure queue, delays, display conditions.
- Implementation – build bubble UI, positioning logic, save flags.
- Testing – verify on different screen sizes and orientations.
- Deployment – submit to App Store / Google Play via TestFlight or Firebase App Distribution.
Accessibility
Pop-up hints must be accessible. According to App Store Review Guidelines (Section 5.1) and Google Play accessibility policies, all interface elements must be accessible to people with disabilities. Add an accessibilityLabel to the dismiss button. VoiceOver automatically reads the instruction text via UIAccessibility.post(notification: .announcement, argument: tooltipText). On Android, use AccessibilityEvent.TYPE_ANNOUNCEMENT through View.announceForAccessibility(). This covers requirements from both platforms.
What we include in our work
- Audit of current onboarding and identification of bottlenecks.
- Design of display logic: queue, delays, flags.
- Implementation of custom tooltips on the chosen platform.
- Integration with analytics (tracking impressions and dismissals).
- Testing on real devices and simulators.
- Deliverables: Documentation (integration guide and flag management), Access to analytics dashboard, Training for your team, and Post-launch support for 2 weeks.
Over 5 years of work, we have implemented tooltip systems for 15+ projects, from fintech apps to social networks. Our team's proven track record and client satisfaction guarantee ensure you get the best onboarding solution. We guarantee on-time delivery within 1–3 days. Contact us for a consultation on implementing callouts in your project. We ensure smooth onboarding without annoying modal windows.
Timeline: from 1 to 3 days depending on the number of hints and platforms. Order an audit of your current onboarding — receive recommendations within 24 hours.







