trailingDatesBackgroundColor property
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;