Articles in this section
Category / Section

How to add a date range picker (SfDateRangePicker) in the Flutter dialog window

1 min read

In an application, the Flutter date range picker can be displayed in a dialog window by using the `onPressed` event of the button.

Step 1:

To host a date range picker in a pop-up, you can use the 'AlertDialog' window to achieve this add the date range picker inside the alert dialog and open the dialog on the 'onpressed' event of a button. Here, a material button is used.

 

body: Column(
  mainAxisAlignment: MainAxisAlignment.center,
  crossAxisAlignment: CrossAxisAlignment.stretch,
  children: <Widget>[
    MaterialButton(
      child: Container(
        child: _selectedDate ==null
            ? Text('Select a date'):Text(_selectedDate!),
      ),
      onPressed: () {
        showDialog(
            context: context,
            builder: (BuildContext context) {
              return AlertDialog(
                  title: Text(''),
                  content: Container(
                    height: 350,
                    child: Column(
                      children: <Widget>[
                        getDateRangePicker(),
                        MaterialButton(
                          child: Text("OK"),
                          onPressed: () {
                            Navigator.pop(context);
                          },
                        )
                      ],
                    ),
                  ));
            });
      },
    ),
  ],
));
 
Widget getDateRangePicker() {
  return Container(
      height: 250,
      child: Card(
          child: SfDateRangePicker(
        view: DateRangePickerView.month,
        selectionMode: DateRangePickerSelectionMode.single,
        onSelectionChanged: selectionChanged,
      )));
}

 

Step 2:

Using the `onSelectionChanged` event, you can show the selected date of the picker.

void selectionChanged(DateRangePickerSelectionChangedArgs args) {
  _selectedDate = DateFormat('dd MMMM, yyyy').format(args.value);
 
  SchedulerBinding.instance!.addPostFrameCallback((duration) {
    setState(() {});
  });
}

 

View sample in GitHub.

Screenshots:

selected date text

selected date with picker

selected date details

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please  to leave a comment
Access denied
Access denied