selectionRadius property

  1. @Deprecated('Use selectionRadius property in SfDateRangePicker')
double selectionRadius
final

The radius for the SfDateRangePicker selection circle in month view.

Defaults to null.

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


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

Implementation

@Deprecated('Use selectionRadius property in SfDateRangePicker')
final double selectionRadius;