I have it currently set up in a redux project that removed the card that was just swiped, and than added a new card to the end of the array. However after swiping the deck renders and shows the previous card, than delays and than updates to the new card.
I have it currently set up in a redux project that removed the card that was just swiped, and than added a new card to the end of the array. However after swiping the deck renders and shows the previous card, than delays and than updates to the new card.
`<Swiper cards={cards} renderCard={(card, i) => { return ( <TouchableWithoutFeedback style={styles.card} onPress={() => onPress(card, i)}>
/> `