How to switch between the Flutter Date range Picker views?
In the Flutter Date Range Picker, you can navigate between the picker views. Switching between picker views has been achieved using the `view` property of DateRangePickerController and tapping the header of the picker views.
Step 1:
Inside the state, initialize the controller for date range picker.
final DateRangePickerController _controller = DateRangePickerController();
Step 2:
Navigate between the picker views using the PopupMenuButton widget as follows. Also navigating between the picker views can be achieved by tapping the header of the picker views.
leading: PopupMenuButton<String>( icon: Icon(Icons.calendar_today), itemBuilder: (BuildContext context) => views.map((String choice) { return PopupMenuItem<String>( value: choice, child: Text(choice), ); }).toList(), onSelected: (String value) { if (value == 'Month') { _controller.view = DateRangePickerView.month; } else if (value == 'Year') { _controller.view = DateRangePickerView.year; } else if (value == 'Decade') { _controller.view = DateRangePickerView.decade; } else if (value == 'Century') { _controller.view = DateRangePickerView.century; } }, ),
Step 3:
Place the calendar inside the body of the Scaffold widget.
body: Card( margin: const EdgeInsets.fromLTRB(50, 150, 50, 150), child: SfDateRangePicker( controller: _controller, view: DateRangePickerView.month, ), )
Screenshots:
| |
Conclusion
I hope you enjoyed learning how to switch between the Flutter Date range Picker views.
You can refer to our Flutter Date Range Picker feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Flatter Date Range Picker example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!