FlutterCalenderTile constructor

const FlutterCalenderTile({
  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<FlutterCalenderEvent>? events,
  12. Color? defaultDayColor,
  13. Color? defaultOutOfMonthDayColor,
  14. Color? selectedColor,
  15. Color? selectedTodayColor,
  16. Color? todayColor,
  17. Color? eventColor,
  18. Color? eventDoneColor,
})

Implementation

const FlutterCalenderTile({
  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,
  //  this.image,
});