flutter_swiper
flutter_swiper copied to clipboard
SwiperController的下标值index一直为0
SwiperController 继承自IndexController
IndexController内部有控制下标的函数,比如next(int index),move(int index),但是SwiperController也有index变量,该变量覆盖了父类IndexController中的变量,导致next,move等等函数无法修改SwiperController中的index值,所以获取SwiperController中的index一直为0,希望修复该bug。