The Question sounds dumb, but I cant figure out how to change the style of the selected Items in the Multiselect dependency.
My Widget looks like this:
DropDownMultiSelect(
hintStyle: const TextStyle(color: Colors.black),
selectedValues: gewaehlteArten,
whenEmpty: "",
options: arten,
onChanged: (List<String> specificArten) {
setArten(arten: specificArten);
});
What can I do?
Here an additional picture:
I want to change the color to any other except of white ;)
