maheshj01 / searchfield

A highly customizable simple and easy to use flutter Widget to add a searchfield to your Flutter Application.This Widget allows you to search and select from list of suggestions.
MIT License
84 stars 63 forks source link

Hint Style #98

Closed AscanioB closed 1 year ago

AscanioB commented 1 year ago

Perhaps I'm missing something but there doesn't seem to be an option to change the hint style.

maheshj01 commented 1 year ago

Hello @AscanioB, Thanks for filing the issue. I am sorry the documentation couldn't help to answer this. You should be able to change the hintStyle using searchInputDecoration: InputDecoration.hintStyle

searchInputDecoration: InputDecoration(
   hintStyle: TextStyle(color: Colors.red)
),

The api is desigend in a way that to decorate the searchfield input use searchInputDecoration and for decorating suggestions use suggestionsDecoration

I hope this answers your question.

AscanioB commented 1 year ago

Yes how silly of me, thanks.

maheshj01 commented 1 year ago

Happens to the best of us :)