Я хочу отправить указанные c данные карточки, которую я только что пролистал, в функцию «onswiped». ПОМОГИТЕ ПОЖАЛУЙСТА!
Я использую 'Reaction-native-Deck-Swiper';
onSwiped = (card, type) => {
console.log(`on swiped ${type}`);
console.log(card);
}
render() {
const search = this.props.search
<Swiper
ref={swiper => {
this.swiper = swiper
}}
onSwipedLeft={() => this.onSwiped(card, 'Not')}
onSwipedRight={() => this.onSwiped(card, 'Favorite')}
onSwipedTop={() => this.onSwiped(card, 'SUPER')}
animateCardOpacity
containerStyle={styles.container}
cards={search}
renderCard={card => <Card card={card}/>}
cardIndex={this.state.cardIndex}
cardVerticalMargin={80}
onSwipedAll={this.onSwipedAllCards}
stackSeparation={15}
backgroundColor="white"
stackSize={search.length > 3 ? 3 : 1}
....
/>
</View>
}