https://github.com/jvcss/statemanager
snippets for state management tools
https://github.com/jvcss/statemanager
animation api bloc flutter-bloc flutter-bloc-pattern provider-state-management
Last synced: about 1 month ago
JSON representation
snippets for state management tools
- Host: GitHub
- URL: https://github.com/jvcss/statemanager
- Owner: jvcss
- Created: 2024-07-01T03:52:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-01T23:47:38.000Z (9 months ago)
- Last Synced: 2025-06-02T09:23:11.699Z (9 months ago)
- Topics: animation, api, bloc, flutter-bloc, flutter-bloc-pattern, provider-state-management
- Language: Dart
- Homepage:
- Size: 5.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# statemanager
Many branches with all types of state management
## Getting Started
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?
```dart
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!
