DayOptions constructor

DayOptions({
  1. Color weekDaySelectedColor = Colors.red,
  2. Color weekDayUnselectedColor = Colors.black38,
  3. Color selectedBackgroundColor = const Color(0xff3AC3E2),
  4. Color unselectedBackgroundColor = Colors.transparent,
  5. Color selectedTextColor = Colors.white,
  6. bool showWeekDay = true,
  7. bool compactMode = false,
  8. bool disableDaysBeforeNow = false,
  9. bool disableDaysAfterNow = false,
  10. bool disableFadeEffect = false,
  11. Color disabledTextColor = Colors.grey,
  12. Color unselectedTextColor = Colors.black,
  13. double dayFontSize = 12,
  14. Color todayBackgroundColor = Colors.transparent,
  15. Color todayTextColor = Colors.black,
  16. 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,
});