Skip to content

Instantly share code, notes, and snippets.

@mfebrianto
Last active July 8, 2020 06:53
Show Gist options
  • Save mfebrianto/b9edf1241670ba93219ae5a4efefe112 to your computer and use it in GitHub Desktop.
Save mfebrianto/b9edf1241670ba93219ae5a4efefe112 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
incrementCounter(newNumber) {
setState(() {
_counter = newNumber;
});
}
@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(updateCounter: incrementCounter)
);
}
}
class MyButton extends StatelessWidget {
final updateCounter;
const MyButton({this.updateCounter});
@override
Widget build(BuildContext context) {
return FloatingActionButton(
onPressed: () => updateCounter(10),
tooltip: 'Increment',
child: Icon(Icons.add)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment