Flutter swiper在tab切换之后快速循环
【摘要】
我的swiper在首页,在BottomNavigationBar点击切换回来之后,首页的swiper就会快速的循环,然后过一会正常。
很明显,要么是数据的问题,要么是swiper配置的问题。
处理...
我的swiper在首页,在BottomNavigationBar点击切换回来之后,首页的swiper就会快速的循环,然后过一会正常。
很明显,要么是数据的问题,要么是swiper配置的问题。
处理数据代价太大,原则上也不太合理,那只能从配置下手。
SwiperController _swiperController;
@override
void initState() {
super.initState();
_scrollController = ScrollController()..addListener(() {});
_swiperController = new SwiperController();
_swiperController.startAutoplay();
}
@override
Widget build(BuildContext context) {
return new Scaffold(
body: Column(
children: <Widget>[
Container(
child: Swiper(
......
loop: false,
autoplay: false,
controller: _swiperController,
......
),
),
],
),
);
}
@override
void dispose() {
_swiperController.stopAutoplay();
_swiperController.dispose();
super.dispose();
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
autoplay 设置为false,loop 也设置为false,用swiperController在生命周期里控制自动播放就行,不影响效果的
文章来源: blog.csdn.net,作者:yechaoa,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/yechaoa/article/details/93178166
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)