Javatpoint Logo
Javatpoint Logo

Flutter Calendar

A calendar is a system used to organize the days, weeks, or months for commercial, religious, social, or administrative purposes. It keeps a record about which events fall on a particular date and when the special events will happen. In this section, we are going to explain how to display and use the calendar widget in our Flutter application.

Flutter provides a simple widget named table_calendar to show the calendar in our app. The table calendar is highly customizable and has many features, such as gesture, animation, and multiple formats.

The table_calendar provides many features, which are given below:

  • It is easy to use API.
  • It provides Custom Builders for UI control.
  • It has vertical auto-sizing.
  • It provides beautiful animations.
  • It provides gesture handling.
  • It provides multiple calendar formats such as a month, weak, year, etc.
  • We can also use multiple days of the week formats.

Let see step by step to create and display the calendar.

Step 1: Create a new Flutter project in the IDE you are using and give its title as Flutter Calendar Example.

Step 2: Open the project, navigate to the lib folder, and open the pubspec.yaml file. In this file, we need to add the table_calendar dependency as below:

Step 3: After adding the above dependency, we need to run the below command to get the required packages:

Step 4: Next, import the dependency in the dart file as below:

Step 5: After this, we need a calendar controller and initialize the calendar as CalendarController.

Step 6: Next, we have to add the calendar widget as a child of any widget. Here, we are going to add the calendar widget as a child of the scaffold widget.

Step 7: Now, we can write our logic and add styling to display the calendar.

Example

Below is the complete code to display the calendar in the app.

Output:

When we run the app in the device or emulator, we should see the UI similar to the below screenshot. Here, we can see the previous and next arrow icon to display the month. The week starts from Monday, and date 14 is my current date.

Flutter Calendar

If we select another date, we can see that the current date and selected date are in a different color. See the below image.

Flutter Calendar

We can also display the week of the month, as shown in this image.

Flutter Calendar
Next TopicFlutter Animation





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA