serenader2014 / flutter_carousel_slider

A flutter carousel widget, support infinite scroll, and custom child widget.
https://pub.dev/packages/carousel_slider
MIT License
1.55k stars 517 forks source link

Expose `_state?.pageController?.position.activity?.isScrolling` on `CarouselController` #425

Open ChopinDavid opened 7 months ago

ChopinDavid commented 7 months ago

It would be useful to be able to check whether the pageController of our CarouselController is currently scrolling. As for our use case, my team is using CarouselController.nextPage and CarouselController.previousPage to animate between carousel items. We do not want to allow the user to trigger this method multiple times while the pageController is scrolling, i.e. by spam tapping the "next" or "previous" buttons. Doing so creates an ugly "stuttering" effect while the user spam taps.