startDateFormat property

String? startDateFormat
final

Formats the week start date text in the week label of SfCalendar schedule view.

Defaults to null.

See also:


@override
 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.schedule,
       scheduleViewSettings: ScheduleViewSettings(
           weekHeaderSettings: WeekHeaderSettings(
             startDateFormat: 'MMM, dd'
           )),
     ),
   );
 }

Implementation

final String? startDateFormat;