CalendarDateCell constructor
const
CalendarDateCell({
- Key? key,
- required int i,
- BoxDecoration? defaultDecoration,
- Widget? defaultChild,
- Widget? userSelectedItemStyle,
- BoxDecoration? userPickedDecoration,
- Widget? userPickedChild,
- EdgeInsets? cellPadding,
Creates a date cell for the calendar with customizable styling and content.
i
is the day number (1-based). The other parameters allow customization
of decorations and child widgets for default, picked, and selected states.
Implementation
const CalendarDateCell({
super.key,
required this.i,
this.defaultDecoration,
this.defaultChild,
this.userSelectedItemStyle,
this.userPickedDecoration,
this.userPickedChild,
this.cellPadding,
});