Delay
Last updated
The Delay action introduces a pause in action execution, allowing you to control timing between operations. This is essential for creating smooth user experiences, coordinating animations, or pacing sequential operations.
Watch this on Youtube: https://www.youtube.com/watch?v=SqXkDwIdBhg
durationInMs
Expression (Number)
❌
Delay duration in milliseconds
Adding pauses between UI transitions or animations
Delaying toast notifications to allow visual feedback to complete
Creating staggered effects in action sequences
Waiting for user attention before proceeding with next steps
Coordinating with external services or API rate limits
By default:
Duration Handling
If no duration is specified, delay completes immediately
Execution Blocking
Subsequent actions wait for the delay to complete
UI Responsiveness
App remains responsive during delay (non-blocking UI)
Precision
Delay duration is in milliseconds with 1ms precision
Insert the Delay action between other actions in a sequence
Set the durationInMs to the desired wait time in milliseconds
Add subsequent actions that should execute after the delay

Last updated