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

Fix an issue where the autoplay will be triggered while the user is interacting with it. #431

Open gralmeidan opened 5 months ago

gralmeidan commented 5 months ago

For PanGestureRecognizer the onEnd function is called whenever the user drags their finger on the widget, replaced with a direct Listener to pointer events with onPointerUp that triggers when the user lifts their finger from the carousel.