Skip to main content

Action Triggers

Action Triggers represent specific events that occur when a user interacts with the app, such as tapping a button, selecting an option from a dropdown, or loading a new page. When an Action Trigger is invoked by one of these interactions, it initiates a corresponding Action—a task or operation that responds to the event.

In essence, Action Triggers are the 'listeners' in your app, keeping an eye out for user interactions and signaling when it's time for your app to respond. By understanding and utilizing Action Triggers, you can craft a more dynamic and user-friendly application experience.

Types of Action Triggers

Page & Component Root Level Triggers

FlutterFlow provides several action triggers that allow you to respond to a page or component being initialized, or things like a key press event.

For more information on these triggers, see the Page Actions & Lifecycle and Components Actions & Lifecycle pages.

Basic Triggers

FlutterFlow provides several basic action triggers that can be easily added:

  • On Tap: This trigger is activated when a user taps on a widget. For instance, you can use this trigger to display a Snackbar message when a button is tapped.
  • On Double Tap: This trigger is activated when a user taps a widget twice quickly. A typical example might be zooming in on an image or photo when the user double-taps on it.
  • On Long Press: This trigger is activated when a user presses and holds down on a widget for an extended period. A common use case is to show additional options or a context menu, such as allowing a user to delete or rename a file when long-pressing on it.

Here’s an example of showing a message on button click using the On Tap trigger:

Widget Specific Triggers

Certain widgets offer specific triggers that activate based on user interactions or device events. These triggers enable developers to define custom behaviors for various situations. Below are examples of widget-specific triggers:

  • On Submit: Triggered on the TextField widget when the user presses "submit" or "done," finalizing text entry.
  • On Page Load: Available on the page widget, this trigger activates as soon as the page loads, useful for tasks like data fetching or content updates.
  • On Phone Shake: Specific to the page widget, this trigger responds to physical shaking of the device, commonly used in games for actions like rolling dice.
  • On Selected: Found on widgets like Dropdowns, CheckboxGroups, Sliders, RadioButtons, ChoiceChips, and RatingBars, this trigger activates upon any change in selection.
  • On Page Swipe: Available on the PageView widget to trigger actions when the page is swiped.
  • On Toggle: Available on the ToggleIcon widget, this trigger responds each time the toggle is activated.
  • On Completed, On Change: Specific to the PinCode widget, these triggers activate when the user completes or alters a pin entry.
  • On Count Changed: Present in the CountController widget, this trigger responds to changes in the count.

Gesture Detector Triggers

Gesture Detector Triggers enable you to respond to user gestures, such as taps, drags, swipes, and pinches. These triggers are invoked based on specific gestures and allow you to add actions in response to user interactions. For example, the onDoubleTap trigger is invoked whenever a user quickly taps twice on a widget, which can be used to toggle a 'like' state or zoom in on content.

These triggers are accesible when you add an action onto a Container.

Lifecycle stages

The lifecycle of gesture triggers involves four key stages: Start, Update, End/Stop, and Cancel. These stages dictate how gestures are detected and handled, from the initial interaction to completion or cancellation. Understanding this lifecycle is crucial for building intuitive gesture-based interactions in your app.

Tap Gesture Lifecycle

Tap gestures have a simpler lifecycle, focusing primarily on detecting taps and whether they complete or get canceled. Here's how the tap lifecycle works:

  1. Down: This stage begins when the user places their finger on the screen to initiate a tap. For example: onTapDown is triggered when the user touches the screen to start a tap.
  2. Up: The tap gesture is completed when the user lifts their finger from the screen. For example: onTapUp is triggered when the user completes the tap by lifting their finger.
  3. Tap: After both of the above actions are successfully completed, onTap is triggered indicating a full tap gesture has occurred.
  4. Cancel: If the user moves their finger too much before lifting it, the tap is canceled, preventing the completion of the action. For example: onTapCancel will be called, and onTap will not be triggered.

Here’s how the lifecycle flows for tap gestures:

tap-gesture-lifecycle

Drag Gesture Lifecycle

Drag gestures are more complex, involving continuous tracking of movement across the screen. The drag lifecycle involves the following stages:

  1. Start: This stage occurs when the user begins dragging their finger on the screen. For example: onHorizontalDragStart is triggered when a horizontal drag is initiated.
  2. Update: During the drag, the gesture’s movement is tracked, allowing you to capture real-time data like the pointer's position or delta values. For example: onHorizontalDragUpdate is triggered as the user drags their finger, enabling the app to track the drag’s progress.
  3. End/Stop: The drag gesture is completed when the user lifts their finger, finalizing the interaction. For example: onHorizontalDragEnd is triggered when the user finishes dragging and lifts their finger off the screen.
  4. Cancel: If the drag gesture is interrupted before it completes (for instance, by another gesture), it will be canceled. For example: onHorizontalDragCancel is triggered if the drag is interrupted before finishing.

Here’s how the lifecycle flows for drag gestures:

lifecycle-stage.avif

Drag Gesture Cancellation

For drag gestures, lifecycle doesn't always strictly follow the sequence of StartUpdateEnd/Stop. The Cancel stage can occur at any point, even before End/Stop, depending on the interaction. This is different from tap gestures because a drag can be canceled after it has started or even while it is being updated.

For example, If a horizontal drag is interrupted before the drag completes (for example, if another gesture takes precedence), onHorizontalDragCancel is triggered instead of onHorizontalDragEnd.

lifecycle-stage-cancel.avif

Available Gesture Detector Triggers

Below is a complete list of available gesture detector triggers in FlutterFlow to enhance the capabilities of gesture-based interactions.

  • onDoubleTapCancel: Triggered when a double-tap gesture is recognized but does not complete successfully.
  • onDoubleTapDown: Triggered when the user presses down on the screen for the first tap in a double-tap sequence.
  • onForcePressEnd: Triggered when the user releases a press that exceeds a certain force threshold.
  • onForcePressPeak: Triggered when the force of a press reaches its peak.
  • onForcePressStart: Triggered when the user begins pressing with enough force to pass a defined threshold.
  • onForcePressUpdate: Triggered when the user changes the amount of pressure applied during a press.
  • onHorizontalDragCancel: Triggered when a horizontal drag gesture is interrupted or canceled.
  • onHorizontalDragDown: Triggered when the user first touches the screen and initiates a horizontal drag.
  • onHorizontalDragEnd: Triggered when the user ends a horizontal drag gesture.
  • onHorizontalDragStart: Triggered when the user begins a horizontal drag gesture.
  • onHorizontalDragUpdate: Triggered continuously as the user drags horizontally.
  • onLongPressCancel: Triggered when a long press gesture is recognized but doesn't complete.
  • onLongPressDown: Triggered when the user first presses down on the screen with the intention of a long press.
  • onLongPressEnd: Triggered when the user releases a long press.
  • onLongPressMoveUpdate: Triggered as the user moves their finger while holding down during a long press.
  • onLongPressStart: Triggered when the long press gesture starts after the user holds down for the required duration.
  • onLongPressUp: Triggered when the user releases a long press after the hold duration.
  • onPanCancel: Triggered when a pan gesture (general dragging) is interrupted or canceled.
  • onPanDown: Triggered when the user first touches the screen with the intention of panning.
  • onPanEnd: Triggered when the user ends a pan gesture.
  • onPanStart: Triggered when the user begins a pan gesture.
  • onPanUpdate: Triggered continuously as the user drags their finger across the screen.
  • onScaleEnd: Triggered when the user ends a scaling gesture, such as pinch-to-zoom.
  • onScaleStart: Triggered when the user begins a scaling gesture.
  • onScaleUpdate: Triggered continuously as the user changes the scale (e.g., zooms in or out).
  • onSecondaryLongPress: Triggered when the user presses and holds with a secondary pointer (e.g., two-finger press).
  • onSecondaryLongPressCancel: Triggered when a secondary long press gesture is recognized but does not complete.
  • onSecondaryLongPressDown: Triggered when the user first touches the screen with a secondary pointer intending to long press.
  • onSecondaryLongPressEnd: Triggered when the user releases a secondary long press.
  • onSecondaryLongPressMoveUpdate: Triggered as the user moves a secondary pointer while holding down during a long press.
  • onSecondaryLongPressStart: Triggered when the secondary long press gesture starts after holding down for the required duration.
  • onSecondaryLongPressUp: Triggered when the user releases a secondary long press after the hold duration.
  • onSecondaryTap: Triggered when the user taps with a secondary pointer (e.g., two-finger tap).
  • onSecondaryTapCancel: Triggered when a secondary tap gesture is recognized but does not complete.
  • onSecondaryTapDown: Triggered when the user first touches the screen with a secondary pointer intending to tap.
  • onSecondaryTapUp: Triggered when the user releases the screen after a secondary tap.
  • onTapCancel: Triggered when a tap gesture is recognized but does not complete successfully.
  • onTapDown: Triggered when the user first touches the screen with the intention of tapping.
  • onTapUp: Triggered when the user releases the screen after a tap.
  • onTertiaryLongPress: Triggered when the user presses and holds with a tertiary pointer (e.g., three-finger press).
  • onTertiaryLongPressCancel: Triggered when a tertiary long press gesture is recognized but does not complete.
  • onTertiaryLongPressDown: Triggered when the user first touches the screen with a tertiary pointer intending to long press.
  • onTertiaryLongPressEnd: Triggered when the user releases a tertiary long press.
  • onTertiaryLongPressMoveUpdate: Triggered as the user moves a tertiary pointer while holding down during a long press.
  • onTertiaryLongPressStart: Triggered when the tertiary long press gesture starts after holding down for the required duration.
  • onTertiaryLongPressUp: Triggered when the user releases a tertiary long press after the hold duration.
  • onTertiaryTapCancel: Triggered when a tertiary tap gesture is recognized but does not complete successfully.
  • onTertiaryTapDown: Triggered when the user first touches the screen with a tertiary pointer intending to tap.
  • onTertiaryTapUp: Triggered when the user releases the screen after a tertiary tap.
  • onVerticalDragCancel: Triggered when a vertical drag gesture is interrupted or canceled.
  • onVerticalDragDown: Triggered when the user first touches the screen and initiates a vertical drag.
  • onVerticalDragEnd: Triggered when the user ends a vertical drag gesture.
  • onVerticalDragStart: Triggered when the user begins a vertical drag gesture.
  • onVerticalDragUpdate: Triggered continuously as the user drags vertically.

Accessing Gesture Detector Data

Gesture detectors not only recognize types of gestures but also provide relevant data based on the trigger. For example, the exact location (XY coordinates) where a drag event occurs.

Examples of using gesture data include:

  • Custom Slider: Use the coordinates to update the position of the thumb of a custom slider on its track.
  • Interactive Zoom: Used the data provided by the scale gesture to appropriately zoom in or out.
  • Dynamic Interfaces: Create effects that react to touch, like animations that start from where the user taps the screen.

You can access the Gesture Detector data after adding the relevant gesture detector triggers. Once added, you can retrieve this data via the Set from Variable menu inside the Action Flow Editor. Depending on your specific needs, you can choose from the following options:

  • Global Position X: The x-coordinate of the pointer relative to the left edge of the screen when the gesture was triggered.
  • Global Position Y: The y-coordinate of the pointer relative to the top edge of the screen when the gesture was triggered.
  • Local Position X: The x-coordinate of the pointer relative to the left edge of the widget that has the action triggers applied.
  • Local Position Y: The y-coordinate of the pointer relative to the top edge of the widget that has the action triggers applied.
  • Delta X: The horizontal distance the pointer moved during the gesture.
  • Delta Y: The vertical distance the pointer moved during the gesture.

access-xy-data

See how to effectively use gesture detector triggers and access XY data in the following example.

Example: Swipe to delete cart items

Let's walk through an example that demonstrates how to implement a "Swipe to Delete" feature for cart items entirely using Gesture Detectors. Here's a preview of how it works:

Here’s how you do it:

  1. First, we create a variable called offsetX to track the horizontal drag distance of the cart item. Since the cart item is displayed in a ListView and is built as a reusable component, we'll define offsetX as a component state variable. This ensures that each cart item independently tracks its own drag position.

    component-state-variable.avif

  2. Now, to make the item move as the user drags it, we add a slide animation (under On Action Trigger) to the Container that holds the item's layout. While configuring the animation, set the Duration to 0 and the Final Position to the offsetX variable. This ensures that the item follows the user's finger as they swipe.

    info

    We'll trigger this animation every time the user swipes by listening to the onHorizontalDragUpdate event (see how to do it in next step).

    add-animation.avif

  3. On the main Container, we add the onHorizontalDragUpdate action trigger. This will called continuously as the user drags the item horizontally. On this event, we update the offsetX variable with the new position based on the swipe movement (using Delta X Data) and trigger the animation. This real-time update makes the item slide on the screen.

  4. Now we need to check if the swipe meets the threshold to delete the item or reset the item's position back to its original location. For that, we add the onHorizontalDragEnd trigger. In the onHorizontalDragEnd trigger, we check if the offsetX value exceeds 100. If it does, we send the item index back to the page or component (via execute callback action) to delete the item from the list. If not, we reverse the slide animation. Lastly, we reset the offsetX value to 0 to ensure it's ready for the next interaction.