I need the flutter dropdownbutton to be expanded much more out of its parent so all dropdown menu items would fit into it.
Now I'm using Row > Expanded > DropdownButton + isExpanded and here is the result
here is the scaffold structure:
Scaffold( ... body: Container(child: Column(children: [ ..,
Expanded(child: SingleChildScrollView(
child: Container(
child: Column(
children: [ ..,
IntrinsicHeight(
child: Expanded( flex: 4,
child: Row([ ..,
DropdownButton(
isExpanded: true,
elevation: 24
),..] ... ]