activeDatesBackgroundColor property
Specifies the background color for the current month cells.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
calendarThemeData: SfCalendarThemeData(
activeDatesBackgroundColor: Colors.green
)
),
child: SfCalendar(),
),
)
);
}
Implementation
final Color? activeDatesBackgroundColor;