Replace FlatList with another component?
See original GitHub issueThe FlatList
component is just too buggy, period.
These plugins may constitute an interesting replacement:
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:29 (9 by maintainers)
Top Results From Across the Web
Are there some components to replace Flatlist in React Native ...
My problem is I'm using Flatlist component ...
Read more >How to Replace a React Native ListView Component with a ...
A <ListView> can be replaced by any of the following: <FlatList> : A component that renders a list, such as a list of...
Read more >Displaying a List in React Native: Map Method or FlatList ...
FlatList is a React Native component that only loads items that are currently visible on the screen and it deletes items as they...
Read more >Display a List Using the FlatList Component in React Native
Since FlatList is a PureComponent , it assumes that the data is an immutable object and that any change in data is done...
Read more >FlatList - React Native
This includes the data prop and parent component state. ... Inherits ScrollView Props, unless it is nested in another FlatList of same ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for the heads up @PublicParadise!
FlatList
never stops to amaze… It looks like anInteractionManager
might be running somewhere, thus postponing the component logic’s execution.It’s definitely time to get rid of
FlatList
for good 😃@naqvitalha Could you share how you replaced FlatList with RecylerView inside carousel? Also, do you support something like https://github.com/facebook/react-native/issues/20500 in RecyclerView?