Describe the bug
Using Combobox with isExpanded: false causes longest option in dropdown to show in two lines. Maybe this is a padding problem/sizing problem?
To Reproduce
Combobox(
isExpanded: false,
onChanged: (option) => print("Option selected: option"),
items: ["Windows", "MacOS", "Linux", "Web", "Android", "iOS"]
.map((e) => ComboboxItem(value: e, child: Text(e)))
.toList(),
value: "Windows",
)
Expected behavior
The list of options in the dropdown shows in one line
Screenshots


Additional context
Add any other context about the problem here.
Describe the bug
Using
ComboboxwithisExpanded: falsecauses longest option in dropdown to show in two lines. Maybe this is a padding problem/sizing problem?To Reproduce
Expected behavior
The list of options in the dropdown shows in one line
Screenshots


Additional context
Add any other context about the problem here.