In the Flutter Event Calendar, you can customize the day, month, week header of schedule view by using the DayHeaderSettings, WeekHeaderSettings, MonthHeaderSettings properties of ScheduleViewsettings. child: SfCalendar( view: CalendarView.schedule, scheduleViewSettings: ScheduleViewSettings( dayHeaderSettings: DayHeaderSettings( dateTextStyle: TextStyle(color: Colors.green, fontSize: 10), dayFormat: 'EEEE', dayTextStyle: TextStyle(color: Colors.red, fontSize: 10)), weekHeaderSettings: WeekHeaderSettings( weekTextStyle: TextStyle( color: Colors.pink, ), startDateFormat: 'MMMM dd, yyyy', endDateFormat: 'MMMM dd, yyyy'), monthHeaderSettings: MonthHeaderSettings( monthFormat: 'MMM yyyy', backgroundColor: Colors.teal, monthTextStyle: TextStyle(color: Colors.black),textAlign: TextAlign.center)), dataSource: _getCalendarDataSource(), )),
|
This page will automatically be redirected to the sign-in page in 10 seconds.