React Native 0.60.4
keyboard-aware-scroll-view version 0.9.1
I focus on a TextInput, as soon as I open it, the keyboard opens, the FlatList scrolls the item, and then the keyboard closes and reopens
Yeah same here, KWSV on the other hand works
I'm experiencing the same issue on 0.9.1 and React Native 0.61.5
Have you tried to set blurOnSubmit={false} on your inputs?
Is there any solution for this issue? I found <FlatList .... removeClippedSubviews={false} ... /> But it's not working as expected.
The solution that work for me it's use KeyboardAvoidingView, Platform and FlastList from 'react-native'.
`
`
<FlatList
data={data}
keyExtractor={(item) => item.id}
renderItem={({item}) => (...)}
/>
</KeyboardAvoidingView>
Most helpful comment
The solution that work for me it's use KeyboardAvoidingView, Platform and FlastList from 'react-native'.
`
behavior={Platform.OS == "ios" ? "padding" : "height"}
<FlatList data={data} keyExtractor={(item) => item.id} renderItem={({item}) => (...)} /></KeyboardAvoidingView>