Skip to content

Instantly share code, notes, and snippets.

@shubie
Created September 13, 2018 14:07
Show Gist options
  • Save shubie/f33551246cbb196b6880a0e93e98791c to your computer and use it in GitHub Desktop.
Save shubie/f33551246cbb196b6880a0e93e98791c to your computer and use it in GitHub Desktop.
return Scaffold(
appBar: AppBar(
title: Text("Texty Navigation"),
),
drawer: Drawer(
child: Container(
padding: EdgeInsets.only(top: 60.0),
decoration: BoxDecoration(color: Color.fromRGBO(55, 113, 170, 1.0)),
child: Column(
children: <Widget>[
Expanded(
child: makeProfileAvatar(),
flex: 1,
),
Expanded(
child: menuGrid(),
flex: 3,
)
],
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment