May 2023
Intermediate to advanced
712 pages
13h 42m
English
As apps grow, managing the flow of data through those apps becomes a more complex and important issue. The Flutter community has devised several solutions to deal with state management. All these solutions have one aspect they share: the separation of UI and business logic.
Before diving into any advanced state management solutions, we will lift the state of the app to a higher level.
In this chapter, you are going to build a to-do note-taking application. In the application, users will be able to create to-do lists that contain many tasks. Users will be able to add and complete their tasks.
We will cover the following recipes:
InheritedWidget and InheritedNotifier ...Read now
Unlock full access