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

how to monthFormat just month? #623

Closed qkrtnfks128 closed 1 year ago

qkrtnfks128 commented 2 years ago

I want calendar that show title only month . how can i do?

muthulakshmi-123 commented 2 years ago

Hi

Thank you for contacting Syncfusion support.

Based on provided information your requirement “How to set the month format in SfCalendar”, you can achieve your requirement by using headerDateFormat. Header date format is used to customize the header in the flutter calendar.

Please refer to the following UG link for more information.
https://help.syncfusion.com/flutter/calendar/headers#header-date-format

Code snippet:

@override
Widget build(BuildContext context) {
  return Container(
    child: SfCalendar(
      view: CalendarView.month,
      headerDateFormat: 'MMMM',
    ),
  );
}

We hope that this helps you. Please let us know if you need further assistance.

Regards, Muthulakshmi