react-native-keyboard-aware-scroll-view
react-native-keyboard-aware-scroll-view copied to clipboard
KeyboardAwareFlatList not typed?
Is KeyboardAwareFlatList
not typed? I'm using it like:
<KeyboardAwareFlatList data={data} renderItem={({ item }) => { ... } />
Even though data
is typed as Item[]
, item
is any
.
What am I doing wrong? Shouldn't item
be Item
?