Last active
February 14, 2021 08:01
-
-
Save felixblaschke/591a4b01779fb8e8684a04911d5ecc54 to your computer and use it in GitHub Desktop.
riverpod1.dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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