Expected Behavior
scrollToIndex should open viewpager with specific index right?
Actual Behavior
Its always open with index 0.
Steps to Reproduce the Problem
componentDidMount() {
console.log('PageIndex:', this.props.pageIndex);
this.viewPager.scrollToIndex(this.props.pageIndex);
}
render() {
return (
<View style={{ flex: 1 }}>
<ViewPager
renderAsCarousel={false}
thresholdPages={2}
ref={ref => { this.viewPager = ref }}
data={this.props.rowData}
renderPage={this._renderPage}
/>
</View>
)
}
i am passing pageIndex = 5, but it always open with 0 index.
Specifications
Expected Behavior
scrollToIndex should open viewpager with specific index right?
Actual Behavior
Its always open with index 0.
Steps to Reproduce the Problem
i am passing pageIndex = 5, but it always open with 0 index.
Specifications
Version:
"react-native": "0.56.0",
"react-native-viewpager-carousel": "^0.2.12",