I have a problem when user spam click/tap on a button/TouchableOpacity in react native.
Ex: tap to navigate another screen
How can i fix that?
Function
onItemPress(title) {
this.props.navigation.navigate(title.toLowerCase(), { title });
}
Render
<TouchableOpacity
onPress={() => this.onItemPress("QuickMenu")}
/>