Closed HerzAce closed 1 year ago
The Syncfusion Flutter SfDateRangePicker control will help you meet your requirements. To fulfill your request in the date range picker, set the allowViewNavigation property to false and the initial view to "year". Refer to the below conde snippets to achieve your requirement,
`@override
Widget build(BuildContext context) {
return Scaffold(
body: SfDateRangePicker(
view: DateRangePickerView.year,
allowViewNavigation: false,
)
);
}`
Refer to our UG documentation to know more details about the SfDateRangePicker control, https://help.syncfusion.com/flutter/daterangepicker/getting-started
I want month picker. please develop.