Search code examples
flutterflutter-layoutflutter-dependenciesflutter-web

How to disable swipe month in flutter tablecalendar


i used flutter TableCalendar plugin, I want to disable swipe next month option. my code is

              child: TableCalendar(
                headerVisible: false,
                focusedDay: DateTime.now(),
                firstDay: DateTime(1995),
                lastDay: DateTime(2050),
                startingDayOfWeek: StartingDayOfWeek.monday,
              ),
            ),

Solution

  • If you dont need any swap, you just need to set availableGestures:

    availableGestures: AvailableGestures.none,