Search code examples
dartflutter

Disable swipe gesture when using BottomNavigationBar


How do we disable swipe on BottomNavigationBar attached to a scaffold?

I could not find a way in the official docs to do so.


Solution

  • Got it:

    Just use

    physics: const NeverScrollableScrollPhysics()
    

    on your scrollable widget!