<TextInput
placeholder="Comments"
multiline={true}
value={TextValue}
onChangeText={value => setTextValue(value)}
/>
inside ScrollView is not working it just get closed on every tap on the keyboard i have tried different approaches but failed to get the inputs...
automaticallyAdjustContentInsets={true}
keyboardShouldPersistTaps="handled"
keyboardDismissMode="none"
<TextInput
placeholder="Comments"
multiline={true}
value={TextValue}
onChangeText={value => setTextValue(value)}
/>
inside ScrollView is not working it just get closed on every tap on the keyboard i have tried different approaches but failed to get the inputs...
automaticallyAdjustContentInsets={true}
keyboardShouldPersistTaps="handled"
keyboardDismissMode="none"