riverpod-containers

Installation
SKILL.md

Riverpod — Containers / Scopes

Instructions

Providers themselves hold no state. State is stored in a ProviderContainer. In Flutter you use the ProviderScope widget, which creates and exposes a container to the widget tree.

Flutter: ProviderScope

Wrap your app at the root so widgets can read providers:

void main() {
  runApp(
    ProviderScope(
      child: MyApp(),
    ),
  );
}
Installs
33
GitHub Stars
8
First Seen
Mar 20, 2026
riverpod-containers — serverpod/skills-registry