-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
Consider supporting React Native #128
Comments
what would be the difference with FlatList / SectionList / VirtualizedList? |
Yes, I know there have been already FlatList and VirtualizedList (and also FlashList). I'm not sure it's worth doing. If we were to make it, the RN version would work without configuration of height/width like web version. And it should support bi-directional infinite scrolling like Twitter App in the future. |
@inokawa Update: we used FlashList in iOS expo app. In my experience it's focused on recycling views and it fails to accommodate certain use-cases very well (eg. reverse scrolling with sticky items). So it's not a one-size-fits-all solution and there is room for another library. |
Thank you for sharing the information! |
@inokawa Same. Althought RN lists can be better, virtua can provide the most value in web given the lack modern, up-to-date and light weight solutions. |
Probably there are no flushSync alternatives in react native. |
It may be possible if we detect element's resize with onLayout of View and get scroll position from ScrollView.
The text was updated successfully, but these errors were encountered: