Skip to content

scrollToIndex not working #26

@ZeroCool00

Description

@ZeroCool00

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

  • Version:
    "react-native": "0.56.0",
    "react-native-viewpager-carousel": "^0.2.12",

    • Platform: ios, not check on android

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions