InterviewSolution
Saved Bookmarks
| 1. |
What is state management? |
|
Answer» Whether you are BUILDING a mobile app or a web application, State Management is crucial. Using it, states of VARIOUS UI controls are centralized to handle data flow across an application. It can be a text field, radio button, checkbox, DROPDOWN, toggle, form, and so on. In Flutter, state management can be categorized into two types as follows:
The following diagram gives a BETTER explanation of the differences between ephemeral and app states: |
|