react-native-viewpager-carousel
react-native-viewpager-carousel copied to clipboard
Can not update initialPage dynamically or jump into tab method ?
Expected Behavior
Can jump into specific page
Actual Behavior
I try to pass dynamical initialPage value, but when initialPage change, view pager seem not re-render
Steps to Reproduce the Problem
- Create view pager with initialPage = 0
- Set state to change initialPage = 1
- Check if view pager show the page 1
After read the source code, I found 1 method:
<ViewPager
ref={c => this.ViewPagerInstance = c}
....
/>
.......
scrollToPage() {
this.ViewPagerInstance.scrollToIndex(this.state.viewPagerPosition);
}
But someone will prefer the data-oriented way