DateRangePickerMonthCellStyle constructor

const DateRangePickerMonthCellStyle({
  1. @Deprecated('Use selectionColor property in SfDateRangePicker') Color? selectionColor,
  2. @Deprecated('Use startRangeSelectionColor property in SfDateRangePicker') Color? startRangeSelectionColor,
  3. @Deprecated('Use endRangeSelectionColor property in SfDateRangePicker') Color? endRangeSelectionColor,
  4. @Deprecated('Use rangeSelectionColor property in SfDateRangePicker') Color? rangeSelectionColor,
  5. TextStyle? textStyle,
  6. TextStyle? todayTextStyle,
  7. TextStyle? trailingDatesTextStyle,
  8. TextStyle? leadingDatesTextStyle,
  9. @Deprecated('Use selectionTextStyle property in SfDateRangePicker') TextStyle? selectionTextStyle,
  10. TextStyle? disabledDatesTextStyle,
  11. TextStyle? blackoutDateTextStyle,
  12. TextStyle? weekendTextStyle,
  13. TextStyle? specialDatesTextStyle,
  14. Decoration? specialDatesDecoration,
  15. Decoration? blackoutDatesDecoration,
  16. Decoration? cellDecoration,
  17. Decoration? todayCellDecoration,
  18. Decoration? disabledDatesDecoration,
  19. Decoration? trailingDatesDecoration,
  20. Decoration? leadingDatesDecoration,
  21. @Deprecated('Use rangeTextStyle property in SfDateRangePicker') TextStyle? rangeTextStyle,
  22. Decoration? weekendDatesDecoration,
})

Creates a date range picker month cell style for date range picker.

The properties allows to customize the month cells in month view of SfDateRangePicker.

Implementation

const DateRangePickerMonthCellStyle(
    {@Deprecated('Use selectionColor property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.selectionColor,
    @Deprecated('Use startRangeSelectionColor property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.startRangeSelectionColor,
    @Deprecated('Use endRangeSelectionColor property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.endRangeSelectionColor,
    @Deprecated('Use rangeSelectionColor property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.rangeSelectionColor,
    this.textStyle,
    this.todayTextStyle,
    this.trailingDatesTextStyle,
    this.leadingDatesTextStyle,
    @Deprecated('Use selectionTextStyle property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.selectionTextStyle,
    this.disabledDatesTextStyle,
    this.blackoutDateTextStyle,
    this.weekendTextStyle,
    this.specialDatesTextStyle,
    this.specialDatesDecoration,
    this.blackoutDatesDecoration,
    this.cellDecoration,
    this.todayCellDecoration,
    this.disabledDatesDecoration,
    this.trailingDatesDecoration,
    this.leadingDatesDecoration,
    @Deprecated('Use rangeTextStyle property in SfDateRangePicker')
    // ignore: deprecated_member_use, deprecated_member_use_from_same_package
    this.rangeTextStyle,
    this.weekendDatesDecoration});