Skip to content

Instantly share code, notes, and snippets.

@itog
Created June 10, 2020 04:21
Show Gist options
  • Save itog/fa3811aa6881096304b92bd982f0c481 to your computer and use it in GitHub Desktop.
Save itog/fa3811aa6881096304b92bd982f0c481 to your computer and use it in GitHub Desktop.
StatefulWidget template
class MyWidget extends StatefulWidget{
@override
State<StatefulWidget> createState() {
return MyWidgetState();
}
}
class MyWidgetState extends State<MyWidget>{
@override
Widget build(BuildContext context) {
return Text('Hello, World!', style: Theme.of(context).textTheme.headline4);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment