Skip to content

Instantly share code, notes, and snippets.

@Indy9000
Last active August 1, 2021 20:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
flutter-mythbusting-04
...
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