todayTextStyle property

TextStyle? todayTextStyle
final

Specify the date picker today date month cell text style.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           dateRangePickerThemeData: SfDateRangePickerThemeData(
             todayTextStyle: TextStyle(backgroundColor: Colors.yellow)
           )
         ),
         child: SfDateRangePicker(),
       ),
     )
  );
}

Implementation

final TextStyle? todayTextStyle;