rangeSelectionColor property

Color? rangeSelectionColor
final

Specify the date picker in-between selected range background color in month view when selection mode as range/multi-range selection.

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

Implementation

final Color? rangeSelectionColor;