DayOptions constructor
DayOptions({
- Color weekDaySelectedColor = Colors.red,
- Color weekDayUnselectedColor = Colors.black38,
- Color selectedBackgroundColor = const Color(0xff3AC3E2),
- Color unselectedBackgroundColor = Colors.transparent,
- Color selectedTextColor = Colors.white,
- bool showWeekDay = true,
- bool compactMode = false,
- bool disableDaysBeforeNow = false,
- bool disableDaysAfterNow = false,
- bool disableFadeEffect = false,
- Color disabledTextColor = Colors.grey,
- Color unselectedTextColor = Colors.black,
- double dayFontSize = 12,
- Color todayBackgroundColor = Colors.transparent,
- Color todayTextColor = Colors.black,
- bool differentStyleForToday = false,
Implementation
DayOptions({
this.weekDaySelectedColor = Colors.red,
this.weekDayUnselectedColor = Colors.black38,
this.selectedBackgroundColor = const Color(0xff3AC3E2),
this.unselectedBackgroundColor = Colors.transparent,
this.selectedTextColor = Colors.white,
this.showWeekDay = true,
this.compactMode = false,
this.disableDaysBeforeNow = false,
this.disableDaysAfterNow = false,
this.disableFadeEffect = false,
this.disabledTextColor = Colors.grey,
this.unselectedTextColor = Colors.black,
this.dayFontSize = 12,
this.todayBackgroundColor = Colors.transparent,
this.todayTextColor = Colors.black,
this.differentStyleForToday = false,
});