Container(
height: 100,
child: DrawerHeader(
child: Text('Drawer Header'),
decoration: BoxDecoration(
color: Colors.black
),
),
);
// you simply wrap it with a sized box or a container and give it the height you want
SizedBox(
height: 80,
child: DrawerHeader(