Skip to content

Instantly share code, notes, and snippets.

@felixblaschke
Last active February 14, 2021 08:01
Show Gist options
  • Save felixblaschke/591a4b01779fb8e8684a04911d5ecc54 to your computer and use it in GitHub Desktop.
Save felixblaschke/591a4b01779fb8e8684a04911d5ecc54 to your computer and use it in GitHub Desktop.
riverpod1.dart
var aNumber = StateProvider((_) => 0);
var aString = StateProvider((_) => 'Hello');
var aColor = StateProvider<Color>((_) => Colors.red);
var aWidget = StateProvider<Widget>((_) => Text("Hi!"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment