i have screen all it contains is flatlist with input inside every rendered element
<SafeAreaView style={{ flex: 1 }}>
<FlatList
data={products}
renderItem={renderPrices}
numColumns={1}
keyExtractor={(item, index) => index.toString()}
refreshControl={
<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />
}
nestedScrollEnabled={true}
onEndReached={() => getProductList()}
onEndReachedThreshold={0.1}
/>
</SafeAreaView>
in renderPrices
there's input renders with every item in the products
list and the element in the bottom of the screen get hide with keyboard