agendaBackgroundColor property

Color? agendaBackgroundColor
final

Specifies the agenda view background color.

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

Implementation

final Color? agendaBackgroundColor;