0

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

DarkSide77
  • 719
  • 1
  • 4
  • 21
  • 1
    can this help ? [Problem Keyboard hide after write one char in TextInput (textinput inside Flatlist Header)](https://stackoverflow.com/questions/69837357/problem-keyboard-hide-after-write-one-char-in-textinput-textinput-inside-flatli) – Adem kriouane Nov 18 '22 at 16:01

0 Answers0