Last active
January 3, 2019 10:15
-
-
Save shubie/a8b09f0f92c6b8f997f9651193ce34af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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