Android react native recyclerview
I am attempting to migrate a native android project over to react native to make it cross platform. I am currently using recyclerview and a bit confused about what the closest React Native library is.
There is npm package which implements recyclerview for react native https://www.npmjs.com/package/react-native-recyclerview-list
The RecyclerView of React-Native is FlatList. Is very easy to use. You have all info here: https://facebook.github.io/react-native/docs/flatlist.html Greetings!
This is what you should be looking at: https://github.com/Flipkart/recyclerlistview. The one referred to in first answer isn't cross platform. Flipkart's recyclerview works on Android/iOS/Web
Comments
Post a Comment