CHB61 / multi_select_flutter

A flexible multi select package for Flutter. Make multi select widgets the way you want.
https://pub.dev/packages/multi_select_flutter
BSD 2-Clause "Simplified" License
238 stars 224 forks source link

how to change chips text color? #39

Open kamleshwebtech opened 3 years ago

kamleshwebtech commented 3 years ago

Kindly suggest how to change chips text color? I am using "MultiSelectDialogField". Thanks

Abhijit-Revamp commented 3 years ago

this is how I use

MultiSelectDialogField<OutletCategory?>(
      chipDisplay:
          MultiSelectChipDisplay<
              OutletCategory?>(
        shape: RoundedRectangleBorder(
          borderRadius:
              BorderRadius.all(
                  Radius.circular(5)),
        ),
        chipColor: Color(0xff72BF44).withOpacity(0.35),
grantespo commented 3 years ago

chipDisplay: MultiSelectChipDisplay(chipColor: Theme.of(context).primaryColor, textStyle: TextStyle(color: Colors.white)),