chilijung / react-native-carousel-view

react-native carousel, support in both Android and iOS
73 stars 44 forks source link

Page Number in indicator #10

Open hemanthkumarcb opened 6 years ago

hemanthkumarcb commented 6 years ago

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

DonghyunNa commented 6 years ago

how about using this way?

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