We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to programmatically navigate to the date in the Flutter event calendar (SfCalendar)

Platform: Flutter |
Control: SfCalendar

In the Flutter event calendar, you can programmatically navigate to the date using displayDate property of the CalendarController.

In initState(), initialize the controller for the calendar.

CalendarController _controller;
 
@override
void initState() {
  _controller = CalendarController();
  super.initState();
}

Use the displayDate property of calendar controller inside the RaisedButton pressed callback.

Container(
  margin: const EdgeInsets.fromLTRB(50, 30, 50, 0),
  child: RaisedButton(
    child: Text('Change display date'),
    onPressed: () {
      _controller.displayDate = DateTime(2020, 5, 1, 9, 0, 0);
    },
  ),
),

Assign controller value to the controller property of the calendar.

SfCalendar(
  view: CalendarView.day,
  controller: _controller,
),

View sample in GitHub

calendargif

 

 

ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile