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