Created
March 20, 2022 10:35
-
-
Save CodingWithTashi/24b52648e0398226287d70724b5f33a4 to your computer and use it in GitHub Desktop.
This file contains 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
const Text( | |
'You have pushed the button this many times:', | |
), | |
Consumer<CounterProvider>( | |
builder: (_, provider, __) { | |
return Text( | |
'${provider.count}', | |
style: Theme.of(context).textTheme.headline4, | |
); | |
}, | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment