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} />
2.1m questions
2.1m answers
60 comments
57.0k users