Skip to content

Commit 1c12334

Browse files
committed
More todos around conditional logic
1 parent ba4a1d4 commit 1c12334

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/resources/control-flow/concepts.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ The `else if` statement can be used to check multiple conditions sequentially.
5454

5555
This example demonstrates multiple conditions. If `userIsLoggedIn` is true, it shows a welcome message. If not, it checks if `userIsGuest` is true and shows a guest message. If neither condition is met, it prompts the user to log in.
5656

57-
<!--- TODO Diagram for Conditionals --->
5857

5958
### Implementing Conditionals
6059
In FlutterFlow, you can implement conditional logic in two primary ways:

docs/resources/control-flow/functions/conditional-logic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This flow lets you combine multiple single conditions using logical AND or OR op
4242
### Conditional Value (If/Then/Else)
4343
Conditional Value allows you to set a dynamic variable based on different conditions. For each condition, you can specify a value that will be assigned if the condition is true. A default value can be provided if none of the conditions are met.
4444

45-
<!--- TODO Arcade --->
45+
See the example **[below](#setting-widget-properties-with-conditional-logic).**
4646

4747
## Setting Widget Properties with Conditional Logic
4848

docs/resources/ui/components/overview.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ some common use-cases.
9090
Here's an example of all the widely used components used in the EcommerceFlow demo app.
9191

9292

93-
<!---TODO Image will be added once all components are built in project --->
94-
93+
<figure>
94+
![custom-components-demo-list.png](..%2Fimgs%2Fcustom-components-demo-list.png)
95+
<figcaption class="centered-caption">Some of the custom components from the Ecommerce Demo App</figcaption>
96+
</figure>
9597

378 KB
Loading

docs/resources/ui/widgets/built-in-widgets/icons.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ ToggleIcon is a special component created for you that lets you add a toggle on
6969

7070
### On Toggle [Action]
7171

72-
By default, FlutterFlow handles the toggling of the State variable from true to false and vice versa when the button is clicked. However, you can also add an additional action under the On Toggle action trigger to perform extra tasks.
72+
By default, FlutterFlow handles the toggling of the State variable from true to false and vice versa when the button is clicked. However, you can also add another action under the On Toggle action trigger to perform extra tasks.
7373

74-
In this example, we trigger the SnackBar action that displays the value of the State variable.
75-
76-
<!--- TODO Show the App DEMO --->
74+
<!--- TODO In this example, we trigger the SnackBar action that displays the value of the State variable.
75+
Show the App DEMO --->

0 commit comments

Comments
 (0)