I am using TextInput for a project and wanted to DISABLE any kind of text selection or actions like (cut/copy/paste/share) as shared in the screenshot below.
I am not able find anything in the react-native official documentation
You should add 2 attributes selectTextOnFocus and editable
selectTextOnFocus
editable
For example:
<TextInput editable={false} selectTextOnFocus={false} />
1.4m articles
1.4m replys
5 comments
57.0k users