Slide 8
Slide 8 text
Widget packaged in Flutter used to manage sate.
- Stateful Widget- has setState method that you can call to
repaint the widget
- Stateful builder - Easier way to handle local state as it doesn’t
require two classes and a decent amount of boilerplate
- Stream builder - used to manage global state for its flexibility,
provides separation of concerns and it feels intuitive.
- Inherited Widget - provide context to every widget below it in