Skip to content

Instantly share code, notes, and snippets.

@wiredprairie
Last active February 22, 2018 02:26
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 wiredprairie/1d23b8d168fd148cb1c6bfe8194984ce to your computer and use it in GitHub Desktop.
Save wiredprairie/1d23b8d168fd148cb1c6bfe8194984ce to your computer and use it in GitHub Desktop.
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Widget build(BuildContext context) {
// here's where the UI tree is built and returned
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment