flutter_carousel_slider icon indicating copy to clipboard operation
flutter_carousel_slider copied to clipboard

Block user swipe

Open tattivitorino opened this issue 4 years ago • 2 comments

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

tattivitorino avatar Oct 06 '21 15:10 tattivitorino

Just in case someone has the same question:

CarouselOptions(
          scrollPhysics: NeverScrollableScrollPhysics(),
        )

tattivitorino avatar Oct 06 '21 16:10 tattivitorino

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 :(

Miedziaq avatar Nov 30 '21 15:11 Miedziaq