Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/resources/control-flow/functions/action-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Action Blocks have different scopes, which determine their availability:
| **Page Level Action Blocks** | Restricted to the page in which they were created. These can access the state variables available in their scope, such as page state variables, as well as variables above their scope, such as [App State variables](../../../resources/data-representation/app-state.md). | Page Level Action Blocks can access page state variables and App State variables. |
| **Component Level Action Blocks**| Restricted to the component in which they were created. These can access the state variables available in their scope, such as component state variables, as well as variables from higher scopes, like page and App State variables. | Component Level Action Blocks can access component state variables, page state variables, and App State variables. |

:::info[Note]
Some actions are not supported and cannot be used in an Action Block, these actions are hidden in the action block editor by default.
For example actions like all the actions under the **Firebase Authentication** category, **Start Periodic Action**, **Upload Data**, etc
:::

## Action Blocks Structure
When creating an Action Block, the process of defining the flow is similar to **[defining
Expand Down