Skip to content

Instantly share code, notes, and snippets.

@mfebrianto
Last active July 8, 2020 06:54
Show Gist options
  • Save mfebrianto/dd6eb13c7e107b9a02dabc86855e4618 to your computer and use it in GitHub Desktop.
Save mfebrianto/dd6eb13c7e107b9a02dabc86855e4618 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: MyButton()
);
}
}
class MyButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return 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