AnimatedHorizontalCalendar constructor

AnimatedHorizontalCalendar({
  1. Key? key,
  2. required DateTime date,
  3. required Widget tableCalenderIcon,
  4. DateTime? initialDate,
  5. DateTime? lastDate,
  6. Color? textColor,
  7. Curve? curve,
  8. ThemeData? tableCalenderThemeData,
  9. BoxShadow? selectedBoxShadow,
  10. BoxShadow? unSelectedBoxShadow,
  11. int? duration,
  12. Color? tableCalenderButtonColor,
  13. Color? colorOfMonth,
  14. Color? colorOfWeek,
  15. double? fontSizeOfWeek,
  16. FontWeight? fontWeightWeek,
  17. double? fontSizeOfMonth,
  18. FontWeight? fontWeightMonth,
  19. Color? backgroundColor,
  20. Color? selectedColor,
  21. @required OnDateSelected? onDateSelected,
})

Implementation

AnimatedHorizontalCalendar({
  Key? key,
  required this.date,
  required this.tableCalenderIcon,
  this.initialDate,
  this.lastDate,
  this.textColor,
  this.curve,
  this.tableCalenderThemeData,
  this.selectedBoxShadow,
  this.unSelectedBoxShadow,
  this.duration,
  this.tableCalenderButtonColor,
  this.colorOfMonth,
  this.colorOfWeek,
  this.fontSizeOfWeek,
  this.fontWeightWeek,
  this.fontSizeOfMonth,
  this.fontWeightMonth,
  this.backgroundColor,
  this.selectedColor,
  @required this.onDateSelected,

}) : super(key: key);