todayTextStyle property

TextStyle? todayTextStyle
final

Specifies the text style for the today month cell.

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

Implementation

final TextStyle? todayTextStyle;