flutter_carousel_slider icon indicating copy to clipboard operation
flutter_carousel_slider copied to clipboard

Touch slider

Open ibrahimkelly opened this issue 1 year ago • 4 comments

How to disable touch (finger) sliding.

I'm about to slide them only through the controller.

ibrahimkelly avatar Feb 02 '24 15:02 ibrahimkelly

How to disable touch (finger) sliding.

I'm about to slide them only through the controller.

options: CarouselOptions( scrollPhysics: const NeverScrollableScrollPhysics(), // 禁止滑动 ),

leolee0223220 avatar Feb 07 '24 07:02 leolee0223220

How to disable touch (finger) sliding. I'm about to slide them only through the controller.

options: CarouselOptions( scrollPhysics: const NeverScrollableScrollPhysics(), // 禁止滑动 ),

Thanks !

ibrahimkelly avatar Feb 09 '24 10:02 ibrahimkelly

Hi, @ibrahimkelly

You can now use disableGesture property to achieve your desired action. You can do that via my fork.

kishan-dhankecha avatar May 18 '24 08:05 kishan-dhankecha

Hi, @ibrahimkelly

You can now use disableGesture property to achieve your desired action. You can do that via my fork.

Does the page index is simple to use without manuel implementation image

ibrahimkelly avatar May 22 '24 02:05 ibrahimkelly