react native textinput readonly code example
Example 1: TextInput disable react native
<TextInput editable={false} selectTextOnFocus={false} />
Example 2: how to make a textarea unwritable in react native
<TextInput
value = "Read Only"
editable = {false}
/>