SfCalendarThemeData.raw constructor
const
SfCalendarThemeData.raw({
- required Brightness? brightness,
- required Color? backgroundColor,
- required TextStyle? headerTextStyle,
- required Color? headerBackgroundColor,
- required Color? agendaBackgroundColor,
- required Color? cellBorderColor,
- required TextStyle? viewHeaderDateTextStyle,
- required TextStyle? viewHeaderDayTextStyle,
- required Color? viewHeaderBackgroundColor,
- required TextStyle? agendaDayTextStyle,
- required TextStyle? agendaDateTextStyle,
- required TextStyle? timeTextStyle,
- required TextStyle? activeDatesTextStyle,
- required Color? activeDatesBackgroundColor,
- required Color? todayBackgroundColor,
- required Color? trailingDatesBackgroundColor,
- required Color? leadingDatesBackgroundColor,
- required TextStyle? trailingDatesTextStyle,
- required TextStyle? blackoutDatesTextStyle,
- required TextStyle? displayNameTextStyle,
- required TextStyle? leadingDatesTextStyle,
- required TextStyle? todayTextStyle,
- required Color? todayHighlightColor,
- required Color? weekNumberBackgroundColor,
- required Color? selectionBorderColor,
- required TextStyle? weekNumberTextStyle,
- required TextStyle? timeIndicatorTextStyle,
- required Color? allDayPanelColor,
Create a SfCalendarThemeData given a set of exact values. All the values must be specified.
This will rarely be used directly. It is used by lerp to create intermediate themes based on two themes created with the SfCalendarThemeData constructor.
Implementation
const SfCalendarThemeData.raw(
{required this.brightness,
required this.backgroundColor,
required this.headerTextStyle,
required this.headerBackgroundColor,
required this.agendaBackgroundColor,
required this.cellBorderColor,
required this.viewHeaderDateTextStyle,
required this.viewHeaderDayTextStyle,
required this.viewHeaderBackgroundColor,
required this.agendaDayTextStyle,
required this.agendaDateTextStyle,
required this.timeTextStyle,
required this.activeDatesTextStyle,
required this.activeDatesBackgroundColor,
required this.todayBackgroundColor,
required this.trailingDatesBackgroundColor,
required this.leadingDatesBackgroundColor,
required this.trailingDatesTextStyle,
required this.blackoutDatesTextStyle,
required this.displayNameTextStyle,
required this.leadingDatesTextStyle,
required this.todayTextStyle,
required this.todayHighlightColor,
required this.weekNumberBackgroundColor,
required this.selectionBorderColor,
required this.weekNumberTextStyle,
required this.timeIndicatorTextStyle,
required this.allDayPanelColor});