webraptor / react-native-deck-swiper

tinder like react-native deck swiper
ISC License
138 stars 84 forks source link

jumpToCardIndex not working #119

Open MaxiSanchezR opened 1 year ago

MaxiSanchezR commented 1 year ago

What I've understand from the docs is that I have to use this method with a reference to the swiper. But this code is not working.

const CustomSwiper = () => { // ...

const jumpToStart = () => { swiperRef.current?.jumpToCardIndex(0); };

return ( <Swiper ref={swiperRef} cards={users} onSwipedAll={jumpToStart} // Other swiper props... /> ); };