FullDayEventView<T> constructor

const FullDayEventView<T>({
  1. Key? key,
  2. BoxConstraints boxConstraints = const BoxConstraints(maxHeight: 100),
  3. required List<CalendarEventData<T>> events,
  4. EdgeInsets? padding,
  5. Widget itemView(
    1. CalendarEventData<T>? event
    )?,
  6. TextStyle? titleStyle,
  7. CellTapCallback<T>? onEventTap,
  8. required DateTime date,
  9. CellTapCallback<T>? onEventDoubleTap,
  10. CellTapCallback<T>? onEventLongPress,
})

Implementation

const FullDayEventView({
  super.key,
  this.boxConstraints = const BoxConstraints(maxHeight: 100),
  required this.events,
  this.padding,
  this.itemView,
  this.titleStyle,
  this.onEventTap,
  required this.date,
  this.onEventDoubleTap,
  this.onEventLongPress,
});