A widget to select days of the week.
Pub: https://pub.dev/packages/select_days_week
- Single and multiple selection
- Select non-selectable days
- Validate selected day
- Customizable selection color
- Possibility to specify days of the week
SelectDaysWeekWidget(
SelectDaysWeekController(
unSelectableDays: [1, 5],
),
daySelected: (int day) {
print(day);
},
);