Skip to content

Instantly share code, notes, and snippets.

@rutvik110
Created August 7, 2022 09:20
Show Gist options
  • Save rutvik110/ce608d5dba9c8c9b38e45432a19d12a9 to your computer and use it in GitHub Desktop.
Save rutvik110/ce608d5dba9c8c9b38e45432a19d12a9 to your computer and use it in GitHub Desktop.
Counter app build method
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: "Increment counter by 1",
child: const Icon(Icons.add),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment