webraptor / react-native-deck-swiper

tinder like react-native deck swiper
ISC License
126 stars 81 forks source link

jumpToCardIndex not working #119

Open MaxiSanchezR opened 9 months ago

MaxiSanchezR commented 9 months 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... /> ); };