Member-only story
Things you should learn about Flutter
This article is a collection of links for getting a better grasp on some really useful aspects of the Flutter Dart framework.
We cover :
- State Management
- JSON and Serialisation
- Local (SQLite) Database
- Material Components Index
State Management
Flutter does a lot of awesome leg work for you in managing the state.
If you are coming from a Redux background, you will be happy to find that Redux is already built in as an option for you. If you are not as comfortable with something as abstract as the Redux paradigm, there are lower-level choices that you may find more intuitive.
This 4 part video series is a good intro to the Flutter widgets, I’ve linked here to the third in the series which is about InheritedWidgets, the first level abstraction of state in Flutter above setState, and below Providers.