React Native Prevent Double Tap

后端 未结 10 541
醉梦人生
醉梦人生 2020-12-30 02:22

I have a TouchableHighlight wrapping a Text block that when tapped, opens a new scene (which I\'m using react-native-router-flux).
It\'s all wo

10条回答
  •  一整个雨季
    2020-12-30 02:44

    You could bounce the click at the actual receiver methods, especially if you are dealing with the state for visual effects.

    _onRefresh() {    
        if (this.state.refreshing)
          return
        this.setState({refreshing: true});
    

提交回复
热议问题