hideEmptyScheduleWeek property

bool hideEmptyScheduleWeek
final

Hides the weeks that doesn’t contain appointment on it.

Defaults to false.

See more:


@override
 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.schedule,
       scheduleViewSettings: ScheduleViewSettings(
         hideEmptyScheduleWeek: true,
       ),
     ),
   );
 }

Implementation

final bool hideEmptyScheduleWeek;