endDateFormat property

String? endDateFormat
final

Formats the week end 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(
             endDateFormat: 'dd, MMM, yyyy'
           )),
     ),
   );
 }

Implementation

final String? endDateFormat;