web123456

How to prevent pageViewr in Flutter from sliding left and right?

PageView can slide left and right by default. If you want to disable sliding, add this parameter.
physics: NeverScrollableScrollPhysics()

PageView(
   physics: NeverScrollableScrollPhysics(), //No sliding
   controller: _controller,
   children: <Widget>[Page1(), Page2(), Page3()],
),
  • 1
  • 2
  • 3
  • 4
  • 5