selectionRadius property

double selectionRadius
final

The radius for the SfHijriDateRangePicker selection circle.

Defaults to null.

Note: This only applies if the DateRangePickerSelectionMode is set to DateRangePickerSelectionMode.circle.

See also:


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

Implementation

final double selectionRadius;