Skip to content

Commit efcf0fb

Browse files
committed
Address review comments
1 parent d9bc3ee commit efcf0fb

File tree

1 file changed

+3
-3
lines changed
  • docs/resources/control-flow/functions

1 file changed

+3
-3
lines changed

docs/resources/control-flow/functions/loops.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ keywords: [Loops, Backend Query, Backend Logic, Control Flow, FlutterFlow]
1111

1212
**Loops** in FlutterFlow allow you to perform repetitive tasks without writing complex code. This is useful when working with lists of data or when you want to repeat actions a certain number of times.
1313

14-
There are two main types of loops supported in FlutterFlow:
14+
There are two types of loops supported in FlutterFlow:
1515

16-
## While Condition
16+
## While Condition Loops
1717

18-
**While Condition** loop requires a condition. The actions within the loop will continue to trigger as long as the condition holds true. When the condition becomes false, the loop terminates, and the next actions in the workflow will trigger.
18+
A **While Condition** loop requires a condition. The actions within the loop will continue to trigger as long as the condition holds true. When the condition becomes false, the loop terminates, and the next actions in the workflow will trigger.
1919

2020
For example, you can use a While Condition loop to continuously check if a user is still within a geofenced area. As long as the condition `isUserInLocation == true` holds, the app might keep checking for updates or show a live indicator.
2121

0 commit comments

Comments
 (0)