riverpod

Installation
SKILL.md

Riverpod Skill

This skill defines how to correctly use Riverpod for state management in Flutter and Dart applications.


1. Setup

void main() {
  runApp(const ProviderScope(child: MyApp()));
}
  • Wrap your app with ProviderScope directly in runApp — never inside MyApp.
  • Install and use riverpod_lint to enable IDE refactoring and enforce best practices.

Installs
42
GitHub Stars
568
First Seen
Mar 11, 2026
riverpod — evanca/flutter-ai-rules