Articles in this section
Category / Section

How to customize the month cells in Flutter Calendar?

1 min read

In the Flutter Event Calendar, you can customize the month cell using the monthCellBuilder property   property of the SfCalendar widget.

STEP 1: Define a function that returns the required widget for month cell customization. In this example, we're using Text and Icon widgets:

Widget monthCellBuilder(BuildContext context, MonthCellDetails details) {
  return Column(children: [
    Container(child: Text(details.date.day.toString()),),
    Container(child: IconButton(icon: Icon(Icons.date_range),),)
  ],);
}

STEP 2: Assign the Icon widget to the monthCellBuilder property of the Flutter event calendar.

child: SfCalendar(
  view: CalendarView.month,
  monthCellBuilder: monthCellBuilder,
),

STEP 3: Please find the entire code snippet for the same.

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:syncfusion_flutter_calendar/calendar.dart';
 
void main() => runApp(MonthCellBuilder());
 
class MonthCellBuilder extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
            body: SafeArea(
          child: SfCalendar(
            view: CalendarView.month,
            monthCellBuilder: monthCellBuilder,
          ),
        )));
  }
 
  Widget monthCellBuilder(BuildContext context, MonthCellDetails details) {
    return Column(
      children: [
        Container(
          child: Text(details.date.day.toString()),
        ),
        Container(
          child: IconButton(
            icon: Icon(Icons.date_range),
          ),
        )
      ],
    );
  }
}

View the GitHub sample here

 

month cell customization

 

 

 

 

 






 

Conclusion

I hope you enjoyed learning about how to customize the month cells in Flutter Calendar.

You can refer to our Flutter Calendar 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  Flutter Calendar 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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!


Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied