dayFormat property

String dayFormat
final

Formats the day text in the day label of SfCalendar schedule view.

Defaults to EEE.

See also:


@override
 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.schedule,
       scheduleViewSettings: ScheduleViewSettings(
           dayHeaderSettings: DayHeaderSettings(dayFormat: 'EEEE')),
     ),
   );
 }

Implementation

final String dayFormat;