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,
),
),
If you dont need any swap, you just need to set availableGestures
:
availableGestures: AvailableGestures.none,