react-native-carousel-view
react-native-carousel-view copied to clipboard
Page Number in indicator
HI ,
react-native-carousel-view this package is really cool, its work awesome ,
here is my few query on page indicator
1.How to show page number in indicator 2.How to add a css class to carousel
Thanks hemanth
how about using this way?
<Carousel
indicatorText={this.state.index}
onPageChange={(page) => {
this.setState({index: page});
}
>
{...}
</Carousel>