react-native-photo-gallery icon indicating copy to clipboard operation
react-native-photo-gallery copied to clipboard

Warning on clicking on the carousel

Open lucasbento opened this issue 7 years ago • 3 comments

I'm receiving this warning when I touch any picture on the carousel:

img_1cdf66b451ac-1

lucasbento avatar Oct 10 '17 13:10 lucasbento

I guess I'm passing a string as key. It's no big deal and can easily be fixed

Michaelvilleneuve avatar Oct 10 '17 13:10 Michaelvilleneuve

Hey @Michaelvilleneuve I get an error when I click on the image carousel. see #11

joshkmartinez avatar Jan 27 '18 23:01 joshkmartinez

index.js needs to be updated to avoid this warning :

goTo(index) {
    this.setState({ index });

    this.swiper.scrollToIndex({ index: Number(index) });
  }

nathvarun avatar Jul 25 '18 13:07 nathvarun