Answers for "remove drawer header elevation flutter"

2

DrawerHeader height flutter

Container(
	height: 100,
	child: DrawerHeader(
    	child: Text('Drawer Header'),
        decoration: BoxDecoration(
                    	color: Colors.black
                    ),
    ),
);
Posted by: Guest on May-13-2020
0

how to control the size of a drawer header flutter

// you simply wrap it with a sized box or a container and give it the height you want
SizedBox(
          height: 80,
          child: DrawerHeader(
Posted by: Guest on November-22-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language