React Native Prevent Double Tap

后端 未结 10 630
醉梦人生
醉梦人生 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:59

    You can do using debounce very simple way

    import debounce from 'lodash/debounce';
    
    componentDidMount() {
    
           this.yourMethod= debounce(this.yourMethod.bind(this), 500);
      }
    
     yourMethod=()=> {
        //what you actually want your TouchableHighlight to do
    }
    
    
     ...
    
    

提交回复
热议问题