card_swiper icon indicating copy to clipboard operation
card_swiper copied to clipboard

swiperController.move(1, animation: false).animation: false.Setting does not take effect.

Open XDJcc opened this issue 1 year ago • 3 comments

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.

XDJcc avatar Aug 04 '23 07:08 XDJcc

you can fix it in transformer_page_view.dart line 590

_pageController.jumpToPage(index); // add this line
event.complete();

Jason-zzzz avatar Oct 20 '23 03:10 Jason-zzzz

same issue

sgehrman avatar Feb 11 '24 02:02 sgehrman

same issue

_pageController.jumpToPage(index); // add this line event.complete();

is work.

XutongGithub avatar May 15 '24 08:05 XutongGithub