card_swiper
card_swiper copied to clipboard
await SwiperController.Next() problem
When i use await in my custom loop function the app hangs
SwiperController SwiperUI = SwiperController();
while (IsAutoPlay) {
await SwiperUI.next();
//some other logics goes here
}
When i use without await - app works fine, but i need to use delay
SwiperController SwiperUI = SwiperController();
while (IsAutoPlay) {
SwiperUI.next();
await Future.delayed(const Duration(seconds: 2));
}