Skip to content

Instantly share code, notes, and snippets.

@lamberger
Last active October 28, 2019 21:14
Show Gist options
  • Select an option

  • Save lamberger/aae9e90d27f5c2deb0e8fcf574b56a9d to your computer and use it in GitHub Desktop.

Select an option

Save lamberger/aae9e90d27f5c2deb0e8fcf574b56a9d to your computer and use it in GitHub Desktop.
Simple drawer
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
DrawerHeader(
decoration: BoxDecoration(
gradient: LinearGradient(
colors: <Color>[Colors.blue, Colors.amberAccent],
),
),
child: Text('HEADER'),
),
ListTile(
title: Text('NUMOR ONE'),
),
ListTile(
title: Text('Gå till sida 1'),
onTap: () {
// Update the state of the app
// Then close the drawer
Navigator.pop(context);
},
),
],
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment