flutter_carousel_slider
flutter_carousel_slider copied to clipboard
Block user swipe
Hello there! I'm wondering if there's a way to avoid the slider change on swipe because i'd like to control it programmatically with the controller.
thx
Just in case someone has the same question:
CarouselOptions(
scrollPhysics: NeverScrollableScrollPhysics(),
)
cool, thanks for the solution, unfortunately i need it to nest the PhotoView widget inside, and I need to swiping for movement of enlarged image. Unfortunately vertical movement not work inside Carousel :(