Disable Paste on React Native TextInput

旧巷老猫 提交于 2020-12-08 01:21:55

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!