Many branches with all types of state management
This project is a starting point for a MyState Management Flutter application.
You can clone a specific snippet project to avoid misstructured the concepts.
-
Singleton + ValueNotifier
git clone --depth 1 -b vanilla_state_manager_crud
-
...
-
How to implement Visuals?
GaugeChartWidget(
width: 200,
height: 300,
data: GaugeData(
label: 'Gauge',
color: Colors.blue,
backgroundColor: Colors.grey,
strokeWidth: 20.0,
showText: true,
value: random.nextDouble() * 100,
),
),- Features example!
