开发app中,首页会经常使用到PageView,首页又不需要滑动,这个时候就需要关闭系统自带的左右滑动效果
效果如下:
PageView.builder(
itemBuilder: (BuildContext context, int index) =>
tabBodies[index],
controller: _pageController,
itemCount: tabBodies.length,
physics: NeverScrollableScrollPhysics(),
onPageChanged: (int index) {
Provide.value<CurrentIndexProvide>(context)
.changeIndex(index);
},
)
image
image
更多详解:
喜欢可以加Q群号:913934649,点赞,评论;
简书: https://www.jianshu.com/u/88db5f15770d
网友评论