I am using react-native FlatList component to list of items Pagination is not happening as expected , as per documentation onEndReached has to get fired when end of page is
Same thing happens with me you need to add contentContainerStyle={flex:1}
<Content contentContainerStyle={{ flex: 1 }}>
onEndReachedThreshold={0.5} remove this line
Pass extraData prop to FlatList as extraData = {this.state}
check the docs for more info.
You use NativeBase in your project and the Flatlist is on Content they are conflict. To solve this problem you need to remove Content