flutter drawer
Scaffold( drawer: Drawer( child: ListView( padding: EdgeInsets.zero, children: [ DrawerHeader( child: Text("Header")), ListTile( title: Text("Home")) ]), ), );
flutter drawer
Scaffold( drawer: Drawer( child: ListView( padding: EdgeInsets.zero, children: [ DrawerHeader( child: Text("Header")), ListTile( title: Text("Home")) ]), ), );
app drawer in flutter
class navigationDrawer extends StatelessWidget { @override Widget build(BuildContext context) { return Drawer( child: ListView( padding: EdgeInsets.zero, children: <Widget>[ createDrawerHeader(), createDrawerBodyItem( icon: Icons.home,text: 'Home'), createDrawerBodyItem( icon: Icons.account_circle,text: 'Profile'), createDrawerBodyItem( icon: Icons.event_note,text: 'Events'), Divider(), createDrawerBodyItem( icon: Icons.notifications_active,text: 'Notifications'), createDrawerBodyItem( icon: Icons.contact_phone,text: 'Contact Info'), ListTile( title: Text('App version 1.0.0'), onTap: () {}, ), ], ), ); } }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us