Hello everyone i've made a map with 2 dropdowns, they work but i got this issue i cant seem to get rid of.
When the names of the selected items are too long i get an overflow.
I dont know what to do about it, hope someone can help me with this :)
Widget:
Theme(
data: ThemeData.light().copyWith(
primaryColor: azulTuti,
accentColor: azulTuti,
colorScheme: ColorScheme.light(
primary: azulTuti),
buttonTheme: ButtonThemeData(
textTheme: ButtonTextTheme.primary),
),
child: FindDropdown(
searchBoxDecoration: InputDecoration(
hintText: "Seleccione un local"),
selectedItem: selected_local,
items: locales,
key: UniqueKey(),
onChanged: (local) {
if (local != "Seleccione un local") {
setState(() {
selected_local = local;
chooseLocal = true;
zoomMarker(selected_local);
});
}
},
)),
What i get:

