Skip to content

Commit b224b80

Browse files
authored
Merge branch 'main' into david/notifications
2 parents 5130918 + 6fb7fe3 commit b224b80

File tree

2 files changed

+8
-18
lines changed

2 files changed

+8
-18
lines changed

docs/ff-concepts/localization-accessibility/accessibility.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ You can control the Focus Configuration using the following properties:
133133

134134
- **Wrap in Focus Traversal Group**: It places a widget (and all its children) in a dedicated group so focus cycles within that region before moving on. For example, if you have a login form with two fields: Email and Password, enabling this option ensures that pressing <kbd>Tab</kbd> will cycle only between them (and not jump to unrelated parts of the screen).
135135
- **Focus Traversal Order**: This sets the exact sequence in which widgets receive focus using numeric values (e.g., 1, 2, etc.). For example, In a sign‑up form, set `Name = 1`, `Email = 2`, and `Password = 3` so pressing <kbd>Tab</kbd> moves logically down the form rather than following the raw widget tree.
136-
137-
Using both the properties you can create structured keyboard navigation for any complex layouts.
136+
- **Show Border on Focus**: Enabling this toggle highlights the widget with a visible border when it receives focus, making navigation clearer. Once enabled, you can customize the border’s appearance using **Border Width**, **Border Color**, and **Border Radius** to match your design.
138137

139138
:::warning
140139

docs/resources/control-flow/time-based-logic/wait-action.md

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,13 @@ keywords: [Wait Action, Time-Based Logic, FlutterFlow]
99

1010
# Wait [Action]
1111

12-
**"Waiting"** on an action or function is a fundamental concept in time-based logic, allowing developers to introduce intentional pauses within a sequence of actions. This is also known as delaying execution of logic, where the execution of a sequence of actions is paused for a specified period. This action is particularly useful when there is a need to synchronize events, manage the timing of operations, or ensure that certain conditions are met before proceeding further in a workflow.
12+
The **Wait** action is used to pause the execution of a workflow for a specific amount of time. This is helpful when you want to delay the next step in a sequence, for example, to synchronize events, allow animations to complete, or ensure a condition is met before continuing. It’s a key concept in managing time-based logic within action flows.
1313

14-
## Delayed Execution of Logic
15-
Delaying execution of logic involves pausing the execution of a sequence of actions for a specified period. This is useful when you need to introduce a time delay before proceeding to the next step in a workflow or process.
16-
17-
## Use-cases
18-
19-
- When you need to wait for a certain condition to be met (e.g., waiting for data to load or a
20-
user to complete an action).
21-
- To create pauses between actions for better user experience (e.g., displaying messages
22-
sequentially).
23-
- Waiting before performing an animation.
24-
25-
## How to?
26-
27-
To implement a Wait Action in your Action Flows, follow this simple tutorial:
14+
:::tip[Possible use cases]
15+
- **Show Splash Screen:** Delay the transition to the next page to allow the splash screen to be visible for a few seconds.
16+
- **Step-by-Step Tutorials:** Introduce timed delays between steps to guide users through a tutorial or onboarding flow.
17+
- **Chain Animations:** Add pauses between multiple animations for a more fluid and organized visual effect.
18+
:::
2819

2920
<div style={{
3021
position: 'relative',
@@ -33,7 +24,7 @@ To implement a Wait Action in your Action Flows, follow this simple tutorial:
3324
width: '100%'
3425
}}>
3526
<iframe
36-
src="https://demo.arcade.software/ou0tecrBVViOqy74U9nE?embed&show_copy_link=true"
27+
src="https://demo.arcade.software/84gU4TTmjwX3STESd5z9?embed&show_copy_link=true"
3728
title=""
3829
style={{
3930
position: 'absolute',

0 commit comments

Comments
 (0)