Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Last active January 15, 2020 23:44
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 dsibinski/74e2318c87f611ce3b8e2f0dab817567 to your computer and use it in GitHub Desktop.
Save dsibinski/74e2318c87f611ce3b8e2f0dab817567 to your computer and use it in GitHub Desktop.
class MySecondWidget extends StatefulWidget {
MySecondWidget({Key key}) : super(key: key);
@override
_MySecondWidgetState createState() =>
_MySecondWidgetState();
}
class _MySecondWidgetState extends State<MySecondWidget> {
int _clickCount = 0;
void incrementClickCount() {
setState(() {
this._clickCount++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("My First App"),
),
body: Container(
padding: EdgeInsets.all(8.0),
child: Text(
"Hello! Times clicked: "
+ this._clickCount.toString(),
style: TextStyle(
color: Colors.green,
fontSize: 20.0),
),
),
floatingActionButton: FloatingActionButton(
child: Icon(Icons.add),
onPressed: this.incrementClickCount,
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment