Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active September 12, 2018 19:23
Show Gist options
  • Save shubie/b26dabe66e14c407680775559d5525b5 to your computer and use it in GitHub Desktop.
Save shubie/b26dabe66e14c407680775559d5525b5 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(
appBar: AppBar(
title: Text("Texty Navigation"),
),
drawer: Drawer(
child: Container(
decoration: BoxDecoration(color: Color.fromRGBO(55, 113, 170, 1.0)),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment