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

Popular posts from this blog

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?