FlutterCalenderTile constructor

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

Implementation

const FlutterCalenderTile({
  this.isBlocked = false,
  this.isHoliday = false,
  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.defaultDayColor,
  this.defaultOutOfMonthDayColor,
  this.selectedColor,
  this.selectedTodayColor,
  this.todayColor,
  this.eventColor,
  this.eventDoneColor,
});