DayHeaderSettings constructor

const DayHeaderSettings({
  1. String dayFormat = 'EEE',
  2. double width = -1,
  3. TextStyle? dayTextStyle,
  4. TextStyle? dateTextStyle,
})

Creates a day header settings for schedule view in calendar.

The properties allows to customize the day header in schedule view of SfCalendar.

Implementation

const DayHeaderSettings(
    {this.dayFormat = 'EEE',
    this.width = -1,
    this.dayTextStyle,
    this.dateTextStyle})
    : assert(width >= -1);