MacosDatePickerThemeData constructor

MacosDatePickerThemeData({
  1. Color? backgroundColor,
  2. Color? selectedElementColor,
  3. Color? selectedElementTextColor,
  4. Color? caretColor,
  5. Color? monthViewControlsColor,
  6. Color? caretControlsBackgroundColor,
  7. Color? caretControlsSeparatorColor,
  8. Color? monthViewHeaderColor,
  9. Color? monthViewSelectedDateColor,
  10. Color? monthViewSelectedDateTextColor,
  11. Color? monthViewCurrentDateColor,
  12. Color? monthViewWeekdayHeaderColor,
  13. Color? monthViewHeaderDividerColor,
  14. Color? monthViewDateColor,
  15. Color? shadowColor,
})

A style that overrides the default appearance of MacosDatePickers when it's used with MacosDatePickerTheme or with the overall MacosTheme's MacosThemeData.datePickerTheme.

See also:

Implementation

MacosDatePickerThemeData({
  this.backgroundColor,
  this.selectedElementColor,
  this.selectedElementTextColor,
  this.caretColor,
  this.monthViewControlsColor,
  this.caretControlsBackgroundColor,
  this.caretControlsSeparatorColor,
  this.monthViewHeaderColor,
  this.monthViewSelectedDateColor,
  this.monthViewSelectedDateTextColor,
  this.monthViewCurrentDateColor,
  this.monthViewWeekdayHeaderColor,
  this.monthViewHeaderDividerColor,
  this.monthViewDateColor,
  this.shadowColor,
});