custom-plugin-flutter-skill-state
Installation
SKILL.md
custom-plugin-flutter: State Management Skill
Quick Start - Provider Pattern
// Define notifier
class CounterNotifier extends ChangeNotifier {
int _count = 0;
int get count => _count;
void increment() {
_count++;
notifyListeners();
}