react-native-flatlist-slider
react-native-flatlist-slider copied to clipboard
initial scroll index not working
i am passing initial scroll index but it's not working. it is starting from 0, not from the index i sent.
<FlatListSlider onPress={()=>{}} initialScrollIndex={this.state.index} currentIndexCallback={this.getItemOfIndex} data={this.state.data} autoscroll={false} />
... same problem for me.
This could be fix by simply adding initialScrollIndex={this.props.initialScrollIndex} to the <Flatlist /> in FlatListSlider.js:85
Hope that the author fix this problem in a soon release? Thanks in advance!