react-native-carousel
react-native-carousel copied to clipboard
Current slide selector
This is not an issue, a suggestion please add a current slide selector. Where we can set the current slide on initialization or later.
I think you can already do that. There's a props for Carousel called initialPage, so if you want to set current slide to 1 upon initialization, just do:
<Carousel initialPage={1} animate={false} onPageChange={this.handlePageChange.bind(this)}/>
The problem is the documentation did not mention this initialPage props.