-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adopt RN's new list views #388
Comments
This would be really awesome to have! List virtualizaton is a pain in the butt and many of the libraries I've sifted through for react were either overly complicated or buggy. |
So the way this is implemented is not really web compatible because it relies on the cc @bvaughn |
Happy to support this effort if you run into any questions writing the adapter. |
There's support for |
On cool, didn't know people polyfilled onLayout on View, that's awesome. Perhaps the problem is that the scroll view metrics aren't getting updated correctly? They come from the onScroll events, as well as onLayout and onContentSize listeners on the ScrollView. Might need some more polyfills? |
Hi @necolas, |
Moving this to the component backlog ticket - #91 |
@necolas any update on using FlatList with React Native Web? |
https://facebook.github.io/react-native/blog/2017/03/13/better-list-views.html
These new lists are easier to use and more performant. There shouldn't be much preventing them from being run on web.
(I quickly tried
FlatList
a few weeks ago but found it would render the entire list of data. It seemed to be an issue related to detecting the lower edge of the visible window.)cc @sahrens
The text was updated successfully, but these errors were encountered: