card_swiper
card_swiper copied to clipboard
swiperController.move(1, animation: false).animation: false.Setting does not take effect.
I want to jump to the screen with the specified subscript., using swiperController.move(1, animation: false). I found that the jump in the interface is still animated.
you can fix it in transformer_page_view.dart line 590
_pageController.jumpToPage(index); // add this line
event.complete();
same issue
same issue
_pageController.jumpToPage(index); // add this line event.complete();
is work.