CalendarWeekRow constructor
const
CalendarWeekRow({
- required DateTime initalDateTime,
- bool showOutOfMonthCells = true,
- required DateTime weekStartDateTime,
- double cellbetweenPadding = 0,
- Key? key,
- bool isExpanded = false,
- DateTime? selectedDate,
- required dynamic onTap()?,
- DateTime? startDateLimit,
- DateTime? endDateLimit,
- dynamic onDisabledCellTap()?,
- bool isEmptyonStart = false,
- List<
String> ? showOnlyFields, - bool isDarkMode = false,
- EdgeInsets? cellMargin,
- EdgeInsets? cellPadding,
- Color? cellColors,
- Color? cellContentColor,
- CalendarCellDecorator? cellDecorator,
- CalendarCellDecorator? currentDayDecorator,
- bool showCurrentDay = false,
Implementation
const CalendarWeekRow({
required this.initalDateTime,
this.showOutOfMonthCells = true,
required this.weekStartDateTime,
this.cellbetweenPadding = 0,
Key? key,
this.isExpanded = false,
this.selectedDate,
required this.onTap,
this.startDateLimit,
this.endDateLimit,
this.onDisabledCellTap,
this.isEmptyonStart = false,
this.showOnlyFields,
this.isDarkMode = false,
this.cellMargin,
this.cellPadding,
this.cellColors,
this.cellContentColor,
this.cellDecorator,
this.currentDayDecorator,
this.showCurrentDay = false,
}) : super(key: key);