codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.
https://pub.dev/packages/flutter_material_pickers
MIT License
98 stars 61 forks source link

no textstyle option for showMaterialCheckboxPicker #23

Open rawquesh opened 3 years ago

rawquesh commented 3 years ago

I really like your package but I can't change the text style for the header and checkbox name, let me know if you have something, thanks.

showMaterialCheckboxPicker(
  context: context,
  title: "Select",
  items: currentOffDays,
  selectedItems: selectedCurrentOffdays,
  backgroundColor: Colors.white,
  headerColor: THEME_COLOR,
  onChanged: (value) async {
);