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
TouchableHighlight
Text
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 } ...