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

How to jump to the specified index tab at the beginning #42

Closed SteveSuv closed 5 years ago

SteveSuv commented 5 years ago

For example, there are a total of 5 slides. I want to display the 3rd page when I open this page, and the dot below also shows the 3rd highlight.

duytq94 commented 5 years ago

Hi, you can use refFuncGoToTab like this

refFuncGoToTab: (refFunc) {
    this.goToTab = refFunc;
    // tab index to jump at first loading
    refFunc(2);
},