CalendarTile constructor

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

Implementation

const CalendarTile({
  super.key,
  this.onDateSelected,
  this.date,
  this.child,
  this.dateStyles,
  this.dayOfWeek,
  this.dayOfWeekStyle,
  this.isDayOfWeek = false,
  this.isSelected = false,
  this.inMonth = true,
  this.events,
  this.selectedColor,
  this.todayColor,
  this.eventColor,
  this.eventDoneColor,
});