Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active September 12, 2018 18:47
Show Gist options
  • Save shubie/7b5c2292ceba230480e23af28561d9ab to your computer and use it in GitHub Desktop.
Save shubie/7b5c2292ceba230480e23af28561d9ab to your computer and use it in GitHub Desktop.
class TextyNavigation extends StatefulWidget {
@override
_TextyNavigationState createState() => _TextyNavigationState();
}
class _TextyNavigationState extends State<TextyNavigation> {
@override
Widget build(BuildContext context) {
return Scaffold(...);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment