Change Drawer Size Flutter Code Example
Example: flutter drawer size
// wrap drawer with Container drawer: Container( width: 50, child: Drawer( child: ListView( padding: EdgeInsets.zero, children: <Widget>[ UserAccountsDrawerHeader( accountName: Text('Test123'), accountEmail: Text('test@123.com'), ListTile( title: Text('data'), ), ], ), ), ),
Comments
Post a Comment