todayCellTextStyle property

TextStyle? todayCellTextStyle
final

Specify the date picker today month, decade or century cell text style.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           dateRangePickerThemeData: SfDateRangePickerThemeData(
             todayCellTextStyle: TextStyle(fontWeight: FontWeight.bold)
           )
         ),
         child: SfDateRangePicker(),
       ),
     )
  );
}

Implementation

final TextStyle? todayCellTextStyle;