Articles in this section
Category / Section

How to change the selection radius in the Flutter Date Range Picker (SfDateRangePicker)

In the Flutter date range picker, you can change the selection radius size by using the selectionRadius property of the date range picker.

import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_datepicker/datepicker.dart';
 
void main() => runApp(SelectionRadius());
 
class SelectionRadius extends StatelessWidget {
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: SafeArea(
          child:
          Card(
            margin: const EdgeInsets.fromLTRB(50, 150, 50, 150),
            child: SfDateRangePicker(
              view: DateRangePickerView.month,
              selectionMode: DateRangePickerSelectionMode.multiple,
              selectionRadius: 20,
            ),
          ),
        ),
      ),
    );
  }
}

View the Github Sample here.

 

selection radius

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Access denied
Access denied