duytq94 / flutter-intro-slider

Simple and configurable app introduction slider for Flutter
https://pub.dartlang.org/packages/intro_slider
MIT License
677 stars 141 forks source link

Cannot disable autoscroll #131

Closed cksrc closed 2 years ago

cksrc commented 2 years ago

Although the documentation states that auto scroll is disabled by default, I was not able to disable it no matter what. Even by setting parameters to false explicitly:

    return IntroSlider(
      slides: slides,
      onDonePress: () => onDonePress(context),
      autoScroll: false,
      loopAutoScroll: false,
    );