Flutter-docs/Flutter/calendar/getting-started.md

17 KiB

layout title description platform control documentation
post Getting started with Flutter Event Calendar widget | Syncfusion Learn here about getting started with Syncfusion Event Calendar (SfCalendar) widget, its elements, and more. flutter SfCalendar ug

Getting started with Flutter Event Calendar (SfCalendar)

This section explains the steps required to add the calendar widget and populate appointments to the calendar widget. This section covers only basic features needed to get started with Syncfusion calendar widget.

To get start quickly with our Flutter event calendar widget, you can check on this video.

N> You can also explore our Flutter Calendar example to know how to render and configure the Flutter Examples.

Add Flutter calendar to an application

Create a simple project using the instructions given in the Getting Started with your first Flutter app documentation.

Add dependency

Add the Syncfusion Flutter calendar dependency to your pubspec.yaml file.

{% highlight dart %}

dependencies:

syncfusion_flutter_calendar: ^xx.x.xx

{% endhighlight %}

N> Here xx.x.xx denotes the current version of Syncfusion Flutter Calendar package.

Get packages

Run the following command to get the required packages.

{% highlight dart %}

$ flutter pub get

{% endhighlight %}

Import package

Import the following package in your Dart code.

{% tabs %} {% highlight Dart %}

import 'package:syncfusion_flutter_calendar/calendar.dart';

{% endhighlight %} {% endtabs %}

Initialize calendar

After importing the package, initialize the calendar widget as a child of any widget. Here, the calendar widget is added as a child of the scaffold widget.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return Scaffold( body: Container( child: SfCalendar(), )); }

{% endhighlight %} {% endtabs %}

Calendar view

Change different calendar views

The SfCalendar widget provides seven different types of views to display dates. It can be assigned to the widget constructor by using the view property. By default, the widget is assigned day view. The current date will be displayed initially for all the calendar views.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return Scaffold( body: SfCalendar( view: CalendarView.month, )); }

{% endhighlight %} {% endtabs %}

Calendar view

Add data source

The calendar widget has a built-in capability to handle appointment arrangement internally based on the appointment collections. You need to assign the created collection to the dataSource property. You can also map custom appointment data to our calendar.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return Scaffold( body: SfCalendar( view: CalendarView.month, dataSource: MeetingDataSource(_getDataSource()), monthViewSettings: MonthViewSettings( appointmentDisplayMode: MonthAppointmentDisplayMode.appointment), )); }

List _getDataSource() { final List meetings = []; final DateTime today = DateTime.now(); final DateTime startTime = DateTime(today.year, today.month, today.day, 9, 0, 0); final DateTime endTime = startTime.add(const Duration(hours: 2)); meetings.add(Meeting( 'Conference', startTime, endTime, const Color(0xFF0F8644), false)); return meetings; }

class MeetingDataSource extends CalendarDataSource { MeetingDataSource(List source) { appointments = source; }

@override DateTime getStartTime(int index) { return appointments![index].from; }

@override DateTime getEndTime(int index) { return appointments![index].to; }

@override String getSubject(int index) { return appointments![index].eventName; }

@override Color getColor(int index) { return appointments![index].background; }

@override bool isAllDay(int index) { return appointments![index].isAllDay; } }

class Meeting { Meeting(this.eventName, this.from, this.to, this.background, this.isAllDay);

String eventName; DateTime from; DateTime to; Color background; bool isAllDay; }

{% endhighlight %} {% endtabs %}

AddData source

Change first day of week

The calendar widget will be rendered with Sunday as the first day of the week, but you can customize it to any day by using the firstDayOfWeek property.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return Scaffold( body: SfCalendar( view: CalendarView.week, firstDayOfWeek: 1, // Monday )); }

{% endhighlight %} {% endtabs %}

Change first day of week

Initial selected date

You can programmatically select the specific calendar month cell, and time slot by setting corresponding date and time value to the initialSelectedDate property of calendar. By default, it is null.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, initialSelectedDate: DateTime(2019, 12, 20, 12), ), ), ), ); }

{% endhighlight %} {% endtabs %}

Initial selected date

Initial display date

You can change the initial display date of calendar by using the initialDisplayDate property of calendar, which displays the calendar based on the given date time. By default, current date will be set as initialDisplayDate.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, initialDisplayDate: DateTime(2019, 12, 20, 7, 30), ), ), ), ); }

{% endhighlight %} {% endtabs %}

Initial display date

Selection decoration

You can decorate the selection view of calendar by using the selectionDecoration property of Calendar.

{% tabs %} {% highlight Dart %}

@override

Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, selectionDecoration: BoxDecoration( color: Colors.transparent, border: Border.all(color: Colors.red, width: 2), borderRadius: const BorderRadius.all(Radius.circular(4)), shape: BoxShape.rectangle, ), ), ), ), ); }

{% endhighlight %} {% endtabs %}

Selection decoration

Today highlight color

You can customize the today highlight color of calendar by using the todayHighlightColor property in calendar, which will highlight the today text in calendar view header, month cell, and agenda view.

{% tabs %} {% highlight Dart %}

@override

Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, todayHighlightColor: Colors.red, ), ), ), ); }

{% endhighlight %} {% endtabs %}

Today highlight color

Cell border color

You can customize the vertical and horizontal line color of calendar by using the cellBorderColor property in calendar.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, cellBorderColor: Colors.blue, ), ), ), ); }

{% endhighlight %} {% endtabs %}

Cell border color

Background color

The calendar widgets background color can be customized by using the backgroundColor property in calendar.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Container( child: SfCalendar( view: CalendarView.week, backgroundColor: Colors.lightBlue, ), ), ), ); }

{% endhighlight %} {% endtabs %}

Background color

Navigation arrow

Using the showNavigationArrow property of the SfCalendar, you can navigate to the next or previous views of the calendar without swiping.

{% tabs %} {% highlight Dart %}

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

{% endhighlight %} {% endtabs %}

Show Navigation Arrow

NOTE

  • The showNavigationArrow property is not applicable when the view is set to CalendarView.schedule.

Cell end padding

You can customize the padding of appointment view end to make touch position for timeslot and month cell by using the cellEndPadding property in the calendar, which allows you to tap the calendar cell when the cell has appointments.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: SfCalendar( view: CalendarView.month, cellEndPadding: 5, dataSource: _getCalendarDataSource(), monthViewSettings: MonthViewSettings( appointmentDisplayMode: MonthAppointmentDisplayMode.appointment), )), ); }

{% endhighlight %} {% endtabs %}

Cell end padding

Current time indicator

You can display the current time indicator in all timeslot views of SfCalendar by using the showCurrentTimeIndicator property and you can also customize the color of current time indicator by using the todayHighlightColor property.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return Container( child: SfCalendar( view: CalendarView.day, showCurrentTimeIndicator: true, ), ); }

{% endhighlight %} {% endtabs %}

showCurrentTimeIndicator

Week number

Display the Week number of the year in all views except schedule view of the SfCalendar by setting the showWeekNumber property as true and by default it is false. Week numbers will be displayed based on the ISO standard.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: SfCalendar( view: CalendarView.month, showWeekNumber: true, ), ), ); }

{% endhighlight %} {% endtabs %}

Week Number in Flutter Calendar

Week number appearance

Customize the Week number text style of the calendar by using the WeekNumberStyle property. Allows to customize the textStyle and the backgroundColor in the Week number of the calendar.

{% tabs %} {% highlight Dart %}

@override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: SfCalendar( view: CalendarView.month, showWeekNumber: true, weekNumberStyle: const WeekNumberStyle( backgroundColor: Colors.pink, textStyle: TextStyle(color: Colors.white, fontSize: 15), ), ), ), ); }

{% endhighlight %} {% endtabs %}

Week Number Appearance in Flutter Calendar

Get the complete "getting started" sample from here.

See also