CalendarTextStyle constructor

const CalendarTextStyle({
  1. Color dayTextColor = Colors.black,
  2. Color focusedDayTextColor = Colors.black,
  3. Color selectedDayTextColor = Colors.white,
  4. Color rangeDayTextColor = Colors.white,
  5. Color outsideDayTextColor = Colors.grey,
  6. Color dayOfWeekTextColor = Colors.black,
  7. double? dayOfWeekFontSize,
  8. double? dayFontSize,
  9. TextStyle headerTextStyle = const TextStyle(fontSize: 17.0),
})

Implementation

const CalendarTextStyle({
  this.dayTextColor = Colors.black,
  this.focusedDayTextColor = Colors.black,
  this.selectedDayTextColor = Colors.white,
  this.rangeDayTextColor = Colors.white,
  this.outsideDayTextColor = Colors.grey,
  this.dayOfWeekTextColor = Colors.black,
  this.dayOfWeekFontSize,
  this.dayFontSize,
  this.headerTextStyle = const TextStyle(
    fontSize: 17.0,
  ),
});