cooperka / react-native-immutable-list-view

:scroll: Drop-in replacement for ListView, FlatList, and VirtualizedList.
MIT License
205 stars 30 forks source link

More social media activity #11

Closed cooperka closed 7 years ago

cooperka commented 7 years ago

This repo seems to have only moderate usage, but also a higher stars/user ratio than average, which tells me that the people using it find it helpful, but it's only being discovered by people who already know exactly what they need.

I wrote an article about it on Medium, which also has high engagement but a low number of total views. SEO is pretty low when searching for either one; the article doesn't even show up in Google results when searching for the exact title.

If anyone has ideas for how to improve visibility, I'm all ears! :cat:

booboothefool commented 7 years ago

Does this solve the issue of ListView leaking memory? https://github.com/facebook/react-native/issues/499

That's how I arrived here.

cooperka commented 7 years ago

@booboothefool haha what do you mean? This issue is definitely not related.

booboothefool commented 7 years ago

@cooperka Apologies. Was referring to the issue https://github.com/facebook/react-native/issues/12512 where scrolling down very long lists continues to leak memory and slow the app to a crawl. FlatList was supposed to help, but it doesn't for me, as well as the other guy in the issue. I found out about FlatList from your article on Medium. 👍

cooperka commented 7 years ago

Gotcha! Yeah brentvatne's comments on https://github.com/facebook/react-native/issues/12512 are very accurate. I would try profiling your app and trying to figure out exactly what is causing the slowness. It's probably not the ListView itself (especially if FlatList didn't fix the issue), but more likely other code that's being executed as you scroll.

If you could create a demo app that we can install and run on our own machines, that would really help us diagnose your problem.