Rebuild State
📦 Properties
Property
Type
Required
Description
✅ Common Use Cases
⚙️ Default Behavior
Behavior
Description
🛠️ How to Use

Last updated
Watch this on Youtube: https://www.youtube.com/watch?v=ucwzWoiWXfg
The Rebuild State action triggers a rebuild or refresh of a specific state context within the app. This can be used to force the UI to update based on changes in state or to reinitialize parts of the app dynamically.
State
Dropdown
Yes
Name of the state context to rebuild
Refreshing UI after external data updates
Forcing re-render of components with dynamic content
Updating displays after background operations complete
Synchronizing UI state with external events
Manual refresh triggers for complex state dependencies
By default:
Scope
Rebuilds current page/component if no name specified
Propagation
Triggers listeners on the specified state context
UI Update
Forces dependent widgets to re-render
Performance
Only rebuilds specified context, not entire app

Add the action to a widget event (e.g., onClick, onChanged)
Choose Rebuild State from the action list
Specify stateContextName to target a specific state context
Last updated