codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.

Home Page:https://pub.dev/packages/flutter_material_pickers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no textstyle option for showMaterialCheckboxPicker

rawquesh opened this issue · comments

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 {
);