react-native-carousel-view icon indicating copy to clipboard operation
react-native-carousel-view copied to clipboard

Page Number in indicator

Open hemanthkumarcb opened this issue 7 years ago • 1 comments

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

hemanthkumarcb avatar Dec 28 '17 08:12 hemanthkumarcb

how about using this way?

  <Carousel
    indicatorText={this.state.index}
    onPageChange={(page) => {
      this.setState({index: page});
    }
  >
    {...}
  </Carousel>

DonghyunNa avatar Aug 01 '18 09:08 DonghyunNa