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
Perhaps you could use the new disable-feature introduced for touchable elements in 0.22? I'm thinking something like this:
Component
this._touchable = component}
onPress={() => this.yourMethod()}/>
Method
yourMethod() {
var touchable = this._touchable;
touchable.disabled = {true};
//what you actually want your TouchableHighlight to do
}
I haven't tried it myself. So I'm not sure if it works.