headerHeight property

double headerHeight
final

The height for header view to layout within this in calendar.

Defaults to 40.

header height as 100 in calendar

See also:


Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.week,
       headerHeight: 100,
     ),
   );
 }

Implementation

final double headerHeight;