Skip to content

Commit 2130cf0

Browse files
authored
Minor fixes
1 parent 90d2010 commit 2130cf0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/ff-concepts/state-management/widget-state.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ FlutterFlow allows you to bind action triggers to widget states, such as calling
4646
**Most common Action Triggers exposed by form widgets:**
4747

4848
- **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.
5050

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.
5252

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.
5454

5555
- **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.
5757

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.
5959

6060
These triggers allow developers to create interactive and responsive applications by defining specific actions that occur in response to user interactions with form widgets.
6161

docs/resources/control-flow/backend-logic/api/create-test-api-calls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Follow the steps below to create an API Call:
2626
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:
2727

2828
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.
3030
:::
3131

3232
The further instructions are based on the **Method Type** you selected.
3333

3434
### For `GET` & `DELETE` call
3535

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:
3737

3838
1. Optional: If the API call requires request headers such as an authorization token, [add a header](rest-api.md#passing-request-headers).
3939
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

Comments
 (0)