crawlinknetworks / dropdown_plus

Simple and easy to use Dropdown in forms with search, keyboard navigation, offiline data source, remote data source and easy customization.
MIT License
12 stars 43 forks source link

searchTextStyle not working #6

Open byblady opened 3 years ago

byblady commented 3 years ago

When wanting to change the color of the search text, it does nothing, since when the dark theme is used the text stays in black, could you tell me if there is another way to change the color, thanks

searchTextStyle: TextStyle(color: Colors.blue),

VladRoscaDev commented 2 years ago

@byblady you can try to wrap TextDropdownFormField() in DefaultTextStyle like so:

DefaultTextStyle(style:TextStyle(color:Colors.blue),child:TextDropdownFormField())

and see if this helps you

skwsccss commented 2 years ago

it doesn't work! @VladRoscaDev