How to disable SfCalendar horizontal swipe

639 views Asked by At

I'm using the Flutter event calendar day view of SfCalendar version 20.3.48. I want to disable the horizontal swipe feature of the widget, only event calendar for a day is required.

SfCalendar(
        view: CalendarView.day,
        todayHighlightColor: kPrimaryColor,
        allowDragAndDrop: false,
        allowViewNavigation: false,
        initialDisplayDate: widget.selectedDate,
        initialSelectedDate: widget.selectedDate,
        dataSource: _getAppointments()
      );
1

There are 1 answers

0
mohammad esmaili On BEST ANSWER

Set viewNavigationMode:

viewNavigationMode: ViewNavigationMode.none,