Flow triggers
Learn how to control when and how flows appear to your users.
What are flow triggers?
Flow triggers determine when and how your interactive flows appear to users. They give you precise control over the user experience, ensuring flows appear at the right moment for maximum impact.
Using the useFlow hook
The useFlow
hook allows you to trigger and control flows. Import and implementation is as follows:
To start a flow, use the startFlow
method. The startFlow
function takes the unique ID of the flow you want to start. This ID must match the id
property in your flow configuration.
Available methods
The useFlow hook provides the following methods:
startFlow
Starts a specific flow by its ID. Returns a promise that resolves when the flow is ready.
showChecklist
Shows the checklist UI for a composite flow. This is typically used for onboarding flows with multiple subflows.
getFlowProgress
Returns detailed progress information for a specific flow, including completion status and step progress.
Trigger priority and conflicts
When multiple flows have triggers and their conditions are met simultaneously, Pointer uses these rules to determine which flow to show:
- Only one flow can be active at a time
- If a flow is already active, new triggers are ignored
- If multiple flows trigger simultaneously, the first one registered takes priority
You can manually control trigger priority by carefully ordering your flows when registering them with the provider.
Best practices
- Be conservative with automatic triggers. Too many automatic popups create a frustrating experience. Use them sparingly for truly important moments.
- Consider user context. Trigger flows when users are most likely to need them and can focus on them.
- Implement appropriate delays. Give users time to get oriented before showing guidance.
- Use appropriate show limits. One-time onboarding should show once, while feature guidance might benefit from occasional repetition.
- Test thoroughly. Verify trigger conditions work as expected in different scenarios.
- Provide opt-out mechanisms. Always let users dismiss flows they don’t want to see.
- Track completion metrics. Monitor how many users complete triggered flows to optimize timing and relevance.
Next steps
- Learn about simple flows for focused guided tours
- Learn about composite flows for comprehensive onboarding experiences