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