flutter drawer header heights code example
Example: DrawerHeader height flutter
Container(
height: 100,
child: DrawerHeader(
child: Text('Drawer Header'),
decoration: BoxDecoration(
color: Colors.black
),
),
);