We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const swiperRef = useRef(); <SwipeCards ref={swiperRef} cards={cards} renderCard={cardData => ( <Card data={cardData} swiperRef={swiperRef} /> )} keyExtractor={cardData => String(cardData.text)} />
swiperRef is undefined.
swiperRef.current is also undefined
But if I swipe on the card once then swiperRef.current.swipeNope() works.
The text was updated successfully, but these errors were encountered:
Any progress on this? Gotta love how many open issues this package has...
Sorry, something went wrong.
use this and its work
const useSwiper = useRef(); const handleOnSwipedLeft = () => useSwiper.current.swipeLeft(); const handleOnSwipedTop = () => useSwiper.swipeTop(); const handleOnSwipedRight = () => useSwiper.current.swipeRight();
const handleOnSwipedLeft = () => useSwiper.current.swipeLeft(); const handleOnSwipedTop = () => useSwiper.swipeTop(); const handleOnSwipedRight = () => useSwiper.current.swipeRight();
this work for me. thank you
No branches or pull requests
The text was updated successfully, but these errors were encountered: