trailingDatesBackgroundColor property

Color? trailingDatesBackgroundColor
final

Specifies the background for the trailing dates month cells.

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

Implementation

final Color? trailingDatesBackgroundColor;