width property

double width
final

The width for day label to layout within this in SfCalendar schedule view.

Defaults to 50.

See also:


@override
 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.schedule,
       scheduleViewSettings:
           ScheduleViewSettings(
                dayHeaderSettings: DayHeaderSettings(width: 70)),
     ),
   );
 }

Implementation

final double width;