I'm building a generic form that fetches data from the server. Like a google forms clone. In the FlatList when I scroll to the bottom the last TextInput element automatically hides the keyboard.
<TextInput
onBlur={() => console.log('I blur')}
placeholder={title}
onChangeText={text => setValue(text))}
keyboardType="decimal-pad"
/>
I tried using KeyboardAvoiding and also KeyboardAwareFlatList but the problem persists.