MonthCellStyle constructor
const
MonthCellStyle({
- Color? backgroundColor,
- Color? todayBackgroundColor,
- Color? trailingDatesBackgroundColor,
- Color? leadingDatesBackgroundColor,
- TextStyle? textStyle,
- @Deprecated('Moved the same [todayTextStyle] to SfCalendar class, ' 'use [todayTextStyle] property from SfCalendar class') TextStyle? todayTextStyle,
- TextStyle? trailingDatesTextStyle,
- TextStyle? leadingDatesTextStyle,
Creates a month cell style for month view in calendar.
The properties allows to customize the month cell in month view of SfCalendar.
Implementation
const MonthCellStyle({
this.backgroundColor,
this.todayBackgroundColor,
this.trailingDatesBackgroundColor,
this.leadingDatesBackgroundColor,
this.textStyle,
@Deprecated('Moved the same [todayTextStyle] to SfCalendar class, '
'use [todayTextStyle] property from SfCalendar class')
// ignore: deprecated_member_use_from_same_package, deprecated_member_use
this.todayTextStyle,
this.trailingDatesTextStyle,
this.leadingDatesTextStyle,
});