startRangeSelectionColor property

Color? startRangeSelectionColor
final

The color which fills the SfHijriDateRangePicker selection view of the range start date.

The color fills to the selection view of the date in HijriDateRange.startDate property.

Defaults to null.

Using a SfDateRangePickerTheme gives more fine-grained control over the appearance of various components of the date range picker.

Note : It is applies only when the DateRangePickerSelectionMode set as DateRangePickerSelectionMode.range of DateRangePickerSelectionMode.multiRange.

See also:


 Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
        controller: _pickerController,
         view: HijriDatePickerView.month,
         selectionMode: DateRangePickerSelectionMode.range,
         startRangeSelectionColor: Colors.red,
       ),
     ),
   );
 }

Implementation

final Color? startRangeSelectionColor;