Last active
February 22, 2018 02:26
-
-
Save wiredprairie/1d23b8d168fd148cb1c6bfe8194984ce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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