height property

double height
final

The height for month label to layout within this in SfCalendar schedule view.

Defaults to 150.

See also:


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

Implementation

final double height;