CalenderMonthlyView constructor

const CalenderMonthlyView({
  1. Key? key,
  2. ValueChanged<DateTime>? onDateSelected,
  3. required Color themeColor,
  4. Color? selectedColor,
  5. Color? todayColor,
  6. DateTime? initialDate,
  7. Function? onDataChanged,
  8. double? borderRadius = 20,
  9. int cycleLength = defaultCycleLength,
  10. int periodLength = defaultPeriodDuration,
  11. bool isFromCalender = true,
  12. bool hideInfoView = false,
})

Implementation

const CalenderMonthlyView({
  super.key,
  this.onDateSelected,
  required this.themeColor,
  this.selectedColor,
  this.todayColor,
  this.initialDate,
  this.onDataChanged,
  this.borderRadius = 20,
  this.cycleLength = defaultCycleLength,
  this.periodLength = defaultPeriodDuration,
  this.isFromCalender = true,
  this.hideInfoView = false,
});