NeatCleanCalendarTile constructor

NeatCleanCalendarTile({
  1. VoidCallback? onDateSelected,
  2. DateTime? date,
  3. Widget? child,
  4. TextStyle? dateStyles,
  5. String? dayOfWeek,
  6. TextStyle? dayOfWeekStyle,
  7. bool isDayOfWeek = false,
  8. bool isSelected = false,
  9. bool inMonth = true,
  10. List<NeatCleanCalendarEvent>? events,
  11. Color? defaultDayColor,
  12. Color? defaultOutOfMonthDayColor,
  13. Color? selectedColor,
  14. Color? selectedTodayColor,
  15. Color? todayColor,
  16. Color? eventColor,
  17. Color? eventDoneColor,
})

Implementation

NeatCleanCalendarTile({
  this.onDateSelected,
  this.date,
  this.child,
  this.dateStyles,
  this.dayOfWeek,
  this.dayOfWeekStyle,
  this.isDayOfWeek = false,
  this.isSelected = false,
  this.inMonth = true,
  this.events,
  this.defaultDayColor,
  this.defaultOutOfMonthDayColor,
  this.selectedColor,
  this.selectedTodayColor,
  this.todayColor,
  this.eventColor,
  this.eventDoneColor,
});