I need to render about 1000 rows with Flatlist
. Unfortunately, after rendering a few ones without problems, my app begins to be very slow and freezing so that it become totally impossible to manipulate. I'm looking for a solution to use instead of Flatlist
which showed its limit. I need a module that can handle hundreds of rows without any problem.
Can someone provide me some advices ?
<FlatList
data={this.state.data}
onEndReached={this.props.onEndReached}
initialNumToRender={5}
keyExtractor={(item, index) => item.objectID}
renderItem={this._renderItem}
/>