Skip to content

Instantly share code, notes, and snippets.

@Indy9000
Created August 1, 2021 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Indy9000/f1b925733154054221ae7c983d031fd8 to your computer and use it in GitHub Desktop.
Save Indy9000/f1b925733154054221ae7c983d031fd8 to your computer and use it in GitHub Desktop.
flutter-mybusting-01
Widget build(BuildContext context) {
print('MyHomePage is building');
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
MyWidget1(),
MyWidget2(),
Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment