I am using FlashList
<FlashList
data={data?.paymentOrders}
keyExtractor={(item) => item.orderID}
onRefresh={onRefresh}
renderItem={renderItem}
estimatedItemSize={100}
refreshing={refreshing}
onLoad={() => console.log("loaded")}
contentContainerStyle={{
paddingHorizontal: 12,
paddingVertical: 12,
}}
ListEmptyComponent={() => !refreshing && <NoDataFound />}
showsVerticalScrollIndicator={false}
removeClippedSubviews={false}
/>
So will this resolve my issue, I am facing the same issue if i navigate back quickly ???????