syncfusion / flutter-examples

This repository contains the Syncfusion Flutter UI widgets examples and the guide to use them.
Other
1.98k stars 775 forks source link

Month picker in calendar #715

Closed HerzAce closed 1 year ago

HerzAce commented 1 year ago

I want month picker. please develop.

MuniappanSubramanian commented 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