How do we disable swipe on BottomNavigationBar attached to a scaffold?
I could not find a way in the official docs to do so.
Got it:
Just use
physics: const NeverScrollableScrollPhysics()
on your scrollable widget!