hyochan / react-native-masonry-list

The Masonry List implementation which has similar implementation as the `FlatList` in React Native
MIT License
393 stars 55 forks source link

Image selection become slow in android device when number of images are more then 100+ #37

Open ronakbuoyancy opened 2 years ago

ronakbuoyancy commented 2 years ago

I load more then 100+ images on masonry list and when i scroll and select image from list, response take few seconds in android device while it's working perfectly in ios devices.

https://user-images.githubusercontent.com/102415580/171390699-ba4000db-9c95-44f7-b5e2-37f03f2781ed.mov

hyochan commented 2 years ago

This looks bit weird. Could you also try react-native-fast-image and see if there are any changes?

wisungyo commented 2 years ago

I face the same issue. Any update?

itajenglish commented 2 years ago

+1 Having crazy performances issues on Android as well. App is practically unusable.

ponikar commented 1 year ago

This is happening because under the hood the library uses ScrollView which does not have any performance benefits compared to Flalist. So unfortunately you cannot use this library to render a long list of data.

In iOS, it will work smoothly but in android, you will see the sluggishness.

BridgeEast commented 1 year ago

I face the same issue