todayHighlightColor property

Color? todayHighlightColor
final

Specifies the today highlight color.

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

Implementation

final Color? todayHighlightColor;