Hello Friends đź‘‹,

Welcome To Infinitbility! ❤️

This tutorial will help you to disable text input in react native, here you will get answer of How to disable textinput in react native, how to make editable false textinput in react native.

Let’s start today topic How to disable textinput in react native

React Native TextInput provides an editable attribute to handle user-editable permission when it’s editable={false} then it will make sure the user can’t edit anything in textinput it’s the same as disabled.

<TextInput editable={false} />

Note:- editable={false} make sure for user edit permission but you have to write your own CSS for a deisabled look.

Thanks For Reading…