ITManager
ITManager
> 我把作者到仓库clone修改了,自测通过。 > try use > https://github.com/lianyagang/flutter_swiper_null_safety/tree/master solved null_safety > 本来想提交pr到这里的,然而没权限 autoplay: true, // 使用了你的空安全的版本之后,设置自动无线轮播失效了
对于itemCount属性的使用,出现过问题吗?我这里无法给itemCount属性动态赋值,只能写成固定的数字。 `Swiper( itemCount: bannerList.length, autoplay: true, itemBuilder: (BuildContext context, int index) { if (bannerList.length == 0) { return null; } return Image.network( bannerList[index].icon, fit: BoxFit.cover, ); }, pagination: SwiperPagination( builder:...