我目前正在使用 react native 构建一个像 tinder 这样的移动应用程序,我使用来自本机基础包的 Deck Swipeper,但我找不到关于如何刷卡的解决方案,然后点击按钮。
这个链接是我一直在使用的原生底座的甲板刷卡器组件:http://nativebase.io/docs/v0.5.13/components#deckSwiper
关于如何通过按钮点击刷卡的任何建议或想法?
首先,您需要保存DeckSwiper
组件的引用:
<DeckSwiper ref={(deck) => this.deck = deck}>
稍后,您可以使用 this.deck.swipeRight()
或 this.deck.swipeLeft
。