flutter_carousel_slider
flutter_carousel_slider copied to clipboard
Disable Swipe Gesuture?
Hi, I am seeing if I can use this widget as step-by-step user guide. Is it possible to disable the swipe change page so user cannot change the current active page?
Thanks in advance
Search for the same functionality. @seikosantana did you found any solution?
I ended up using a different library
You can use AbsorbPointer to disable touch on CarouselSlider https://stackoverflow.com/questions/54220859/flutter-disable-touch-on-the-entire-screen
pass this options: CarouselOptions( scrollPhysics: this.allowSwipeToChangePages ? null : NeverScrollableScrollPhysics(),
pass this options: CarouselOptions( scrollPhysics: this.allowSwipeToChangePages ? null : NeverScrollableScrollPhysics(),
Doesn't work for me...
@seikosantana which library you used?
@seikosantana which library you used?
@hadi7khan i no longer remember since i have moved on from flutter. I'll take a look on my source when i have access to it
@seikosantana Please do, This issue is giving me headache