flutter-mythbusting-04
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
... | |
children: <Widget>[ | |
_buildMyWidget1(), | |
_buildMyWidget2(), | |
// MyWidget1(), | |
// MyWidget2(), | |
Text( | |
'You have pushed the button this many times:', | |
), | |
Text( | |
'$_counter', | |
style: Theme.of(context).textTheme.headline4, | |
), | |
], | |
... | |
... | |
Widget _buildMyWidget1() => MyWidget1(); | |
Widget _buildMyWidget2() => MyWidget2(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment