问题
Nothing in the docs about this. I want to disable the small popup below when clicking on a TextInput in React Native.
Any ideas ?
回答1:
<TextInput
contextMenuHidden={true}
value={this.state.text}
onChangeText={(text) => this.setState({ text})}
/>
来源:https://stackoverflow.com/questions/46790050/disable-paste-on-react-native-textinput