monthFormat property

String monthFormat
final

Formats the month label text in the month label SfCalendar schedule view.

Defaults to MMMM yyyy.

See also:


@override
 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.schedule,
       scheduleViewSettings: ScheduleViewSettings(
           monthHeaderSettings: MonthHeaderSettings(
                monthFormat: 'MMMM, yyyy')),
     ),
   );
 }

Implementation

final String monthFormat;