AppDaysPicker constructor
const
AppDaysPicker({
- required AppItemsHandler<
Date> handler, - required Date firstDate,
- required Date lastDate,
- bool selectableDatePredicate(
- Date
- Widget dayBuilder(
- Widget child,
- Date date
- ValueChanged<
Date> ? onDateChanged, - String? tooltipBuilder(
- Date
- bool enabled = true,
- DateRange? selectedDisplayRange,
- dynamic onDisplayedMonthChanged(
- MonthAndYear date
- Date? initialDate,
- bool showTitle = true,
- Key? key,
Implementation
const AppDaysPicker({
required this.handler,
required this.firstDate,
required this.lastDate,
this.selectableDatePredicate,
this.dayBuilder,
this.onDateChanged,
this.tooltipBuilder,
this.enabled = true,
this.selectedDisplayRange,
this.onDisplayedMonthChanged,
this.initialDate,
this.showTitle = true,
super.key,
});