I'm attempting to reduce the height of a Dropdown menu, I have tried in this way:
SizedBox(
height: 30,
child: Container(
decoration: BoxDecoration(color: Colors.white),
child: DropdownMenu<String>(
// inputDecorationTheme: InputDecorationTheme(alignLabelWithHint: ),
textStyle: TextStyle(fontSize: 10),
inputDecorationTheme: InputDecorationTheme(
isCollapsed: true
),
dropdownMenuEntries: [
DropdownMenuEntry(value: "Name - First", label: "Name - First",
style: ButtonStyle(textStyle: MaterialStateTextStyle.resolveWith(
(states) => TextStyle(fontSize: 10)
))
),
],
),
),
),
To reduce its height but the result is the following. How can I easily make the dropdown menu smaller?
DropdownMenu height change attempt
I was expecting to make the Dropdown menu smaller