I am working on a react-native app in which I am facing a problem with the TextInput. I am working on TSX(Typescript) and I have used react-native's textInput. Whenever I press on a key on the keyboard, the keyboard automatically closes down.
I have provided the code below please review it. Please seen the given video https://vimeo.com/740689986
``
<TextField value={firstNameValue} fieldType='light' label="First Name" onChangeText={(value) => setFirstNameValue(value) } />
``