serenader2014 / flutter_carousel_slider

A flutter carousel widget, support infinite scroll, and custom child widget.
https://pub.dev/packages/carousel_slider
MIT License
1.56k stars 514 forks source link

Touch slider #434

Open ibrahimkelly opened 2 months ago

ibrahimkelly commented 2 months ago

How to disable touch (finger) sliding.

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

orlandolee0223 commented 2 months ago

How to disable touch (finger) sliding.

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

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

ibrahimkelly commented 2 months ago

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

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

Thanks !