The following code works fine on iOS
<TextInput pointerEvents={"none"} value={textValue2} onPress={something}></TextInput>
But on android it would seem that pointerEvents isnt supported.
I tried wrapping the TextInput around a TouchableOpacity but sadly (albeit reasonably) focus is still given to it when pressed. Is there anyway i can detect the press without triggering the focus? Other props i've tried that didnt work:
editable={false} selectTextOnFocus={false}