specialDatesTextStyle property

TextStyle? specialDatesTextStyle
final

Specify the date picker special dates text style in month view

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

Implementation

final TextStyle? specialDatesTextStyle;