Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active January 3, 2019 10:15
Show Gist options
  • Save shubie/a8b09f0f92c6b8f997f9651193ce34af to your computer and use it in GitHub Desktop.
Save shubie/a8b09f0f92c6b8f997f9651193ce34af to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class AppDrawer extends StatefulWidget {
@override
_AppDrawerState createState() => _AppDrawerState();
}
class _AppDrawerState extends State<AppDrawer> {
@override
Widget build(BuildContext context) {
return SizedBox(
width: 160.0,
child: Drawer(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment