Skip to content

Instantly share code, notes, and snippets.

@littleironical
Last active November 28, 2020 08:20
Show Gist options
  • Save littleironical/5cc22aa054228af3d01e864193517359 to your computer and use it in GitHub Desktop.
Save littleironical/5cc22aa054228af3d01e864193517359 to your computer and use it in GitHub Desktop.
appBar: AppBar(
title: Text('hack_ed'),
backgroundColor: Colors.indigo,
leading: Builder(
builder: (BuildContext context) {
return IconButton(
icon: const Icon(Icons.more_vert),
onPressed: () {
Scaffold.of(context).openDrawer();
},
);
},
),
),
drawer: Drawer(),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment