InfiniteScrollDateList constructor

const InfiniteScrollDateList({
  1. Key? key,
  2. required DateTime initialDate,
  3. DateTime? selectedDate,
  4. ValueChanged<DateTime>? onDateSelected,
  5. bool showLunar = true,
  6. bool showEventIndicator = false,
  7. double itemHeight = 64,
  8. Set<DateTime>? disabledDates,
  9. DateTime? minDate,
  10. DateTime? maxDate,
})

Implementation

const InfiniteScrollDateList({
  super.key,
  required this.initialDate,
  this.selectedDate,
  this.onDateSelected,
  this.showLunar = true,
  this.showEventIndicator = false,
  this.itemHeight = 64,
  this.disabledDates,
  this.minDate,
  this.maxDate,
});