height property

double height
final

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

Defaults to 30.

See also:


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

Implementation

final double height;