cetorres / multiselect_formfield

A Flutter package that provides a multi select form field using alert dialog to select multiple items with checkboxes and showing as chips.
BSD 3-Clause "New" or "Revised" License
72 stars 59 forks source link

Remove hard-coded black color #16

Open kimsreng opened 4 years ago

kimsreng commented 4 years ago

It is easier to adapt to theme change when the color is not hard-coded

saguado69 commented 4 years ago

I have been able to color the chips with ChipTheme.of but didn't found the way to format the titleText and hintText, so any suggestion for this? Wil be nice if we can set this on the widget.

UPDATE:

Seems they are hardcoded with black and grey.

Have added styling on my theme and still black.

inputDecorationTheme: const InputDecorationTheme( labelStyle: TextStyle(color: Colors.white), hintStyle: TextStyle(color: Colors.white), ),

Thanks

Santi.

Fixed!!! Thanks

cetorres commented 4 years ago

Please fix the conflict, so I can merge your PR. Thank you.