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();
  }

  void decrement() {
    _count--;
    notifyListeners();
  }
Related skills
Installs
4
GitHub Stars
8
First Seen
Mar 19, 2026