You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ff-concepts/state-management/widget-state.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,16 +46,16 @@ FlutterFlow allows you to bind action triggers to widget states, such as calling
46
46
**Most common Action Triggers exposed by form widgets:**
47
47
48
48
-**On Focus Change:** Triggered when a widget, such as a text field, gains or loses focus.
49
-
E.g Showing additional tips or validation messages when the user starts typing in a text field.
49
+
For example, showing additional tips or validation messages when the user starts typing in a text field.
50
50
51
-
-**On Submit:** Triggered when a form or text field is submitted. E.g Validating input and submitting data when the user presses the enter key or clicks a submit button.
51
+
-**On Submit:** Triggered when a form or text field is submitted. For example, validating input and submitting data when the user presses the enter key or clicks a submit button.
52
52
53
-
-**On Change:** Triggered when the value of a widget changes. E.g Real-time validation or updating state as the user types in a text field or changes a selection in a dropdown.
53
+
-**On Change:** Triggered when the value of a widget changes. For example, real-time validation or updating state as the user types in a text field or changes a selection in a dropdown.
54
54
55
55
-**On Completed:** Triggered when a specific input is completed, such as entering a pincode.
56
-
E.g Automatically moving to the next step in a process after a complete and valid pincode is entered.
56
+
For example, automatically moving to the next step in a process after a complete and valid pincode is entered.
57
57
58
-
-**On Selected:** Triggered when an option is selected in widgets like choice chips, checkboxes, radio buttons, or sliders. E.g Updating the UI or performing actions based on the selected option.
58
+
-**On Selected:** Triggered when an option is selected in widgets like choice chips, checkboxes, radio buttons, or sliders. For example, updating the UI or performing actions based on the selected option.
59
59
60
60
These triggers allow developers to create interactive and responsive applications by defining specific actions that occur in response to user interactions with form widgets.
Copy file name to clipboardExpand all lines: docs/resources/control-flow/backend-logic/api/create-test-api-calls.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,14 +26,14 @@ Follow the steps below to create an API Call:
26
26
If you want to use a dynamic URL, for example, `<https://reqres.in/api/users/2>` where 2 is dynamic and `<https://reqres.in/api/users?page=5>` where 5 is dynamic:
27
27
28
28
1. Replace the hard-coded value with a meaningful name inside the brackets (e.g., from `https://reqres.in/api/users/2`to `https://reqres.in/api/users/[user_id]`).
29
-
2. And then, [create a new variable](rest-api.md#creating-variables) with the same name you provided inside the brackets.
29
+
2. And then, [**create a new variable**](rest-api.md#creating-variables) with the same name you provided inside the brackets.
30
30
:::
31
31
32
32
The further instructions are based on the **Method Type** you selected.
33
33
34
34
### For `GET` & `DELETE` call
35
35
36
-
If you selected `**GET**`or `**DELETE**` as the method type, follow the steps below:
36
+
If you selected `GET`or `DELETE` as the method type, follow the steps below:
37
37
38
38
1. Optional: If the API call requires request headers such as an authorization token, [add a header](rest-api.md#passing-request-headers).
39
39
2. Optional: If the API call requires query parameters such as page number or user id, [add query parameters](rest-api.md#passing-query-parameters).
0 commit comments