macvish / react-native-basic-carousel

https://www.npmjs.com/package/react-native-basic-carousel
MIT License
21 stars 2 forks source link

jump to index #4

Closed Ali72 closed 6 months ago

Ali72 commented 6 months ago

How can I jump to a specific index? I want to keep a reference to the carousel, and when a button is pressed, it should jump to a specific index of the carousel with/without animation.

ex: open page and it starts carousel from specific index (not zero)

macvish commented 6 months ago

You could use the scrollToIndex method, ref.current.scrollToIndex({ index: 1 }),. but I could also add snapToNext and snapToPrev method too