How to use multiple picker in the Flutter Date Range Picker (SfDateRangePicker)?
In the Flutter date range picker, you can add multiple picker using the `enableMultiView` property of the date range picker.
Place the picker inside the body of the Scaffold widget and enable the ‘enableMultiView’ property and set the value as true for showing the Multiview picker.
body: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Card( margin: const EdgeInsets.fromLTRB(50, 0, 50, 0), child: SfDateRangePicker( view: DateRangePickerView.month, selectionMode: DateRangePickerSelectionMode.range, enableMultiView: true, ), ) ], ));
The web Platform is recommended, and all modes of selection are applicable
View the Github Sample here.
Screenshot
|
|
Conclusion
I hope you enjoyed learning how to use multiple picker in the Flutter Date Range Picker (SfDateRangePicker).
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!