const
FlexibleCalendarView(- {Key? key,
- DateTime? initialStartDate,
- DateTime? initialEndDate,
- dynamic startEndDateChange(
- DateTime,
- DateTime?
)?,
- DateTime? maximumDate,
- DateTime? minimumDate,
- DateFormat? formatMonthTitle,
- String? textPreMonthTitle,
- bool? isConvertDateOfWeekToVietnamese,
- String? formatTitleDateOfWeek,
- Color? colorDayInAnotherMonth,
- Color? colorOfSelectedDay,
- Color? colorOfDayInMonth,
- TextStyle? styleOfDay,
- BoxDecoration? decorationOfSelectedDay,
- bool? isSelectedOnlyOneDay,
- Color? colorInRange,
- BorderRadius? borderBackgroundStartDay,
- BorderRadius? borderBackgroundEndDay}
)
Implementation
const FlexibleCalendarView(
{Key? key,
this.initialStartDate,
this.initialEndDate,
this.startEndDateChange,
this.maximumDate,
this.minimumDate,
this.formatMonthTitle,
this.textPreMonthTitle,
this.isConvertDateOfWeekToVietnamese,
this.formatTitleDateOfWeek,
this.colorDayInAnotherMonth,
this.colorOfSelectedDay,
this.colorOfDayInMonth,
this.styleOfDay,
this.decorationOfSelectedDay,
this.isSelectedOnlyOneDay,
this.colorInRange,
this.borderBackgroundStartDay,
this.borderBackgroundEndDay})
: super(key: key);