allDayPanelColor property

Color? allDayPanelColor
final

Specifies the background for all day panel.

Widget build(BuildContext context) {
   return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           calendarThemeData: SfCalendarThemeData(
           allDayPanelColor: Colors.blue),
           )
         ),
         child: SfCalendar(),
         ),
     )
  );
}

Implementation

final Color? allDayPanelColor;