activeDatesTextStyle property

TextStyle? activeDatesTextStyle
final

Specify the date picker current month cells text style.

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

Implementation

final TextStyle? activeDatesTextStyle;