zachgibson / react-native-parallax-swiper

Paged Parallax Swiper with Effects
MIT License
623 stars 76 forks source link

Explore using ViewPagerAndroid instead of ScrollView/FlatList #12

Open zachgibson opened 6 years ago

zachgibson commented 6 years ago

Not sure if this is viable, but the scrolling animation is way better on Android using ViewPagerAndroid versus ScrollView. Current issues are:

  1. ViewPagerAndroid exposes scroll offset but gets reset to 0 on every page
  2. ViewPagerAndroid probably isn’t optimized for long lists like FlatList
    • Could possibly still add this as an option if wanted e.g. short list of like 3 pages
YashGadle commented 5 years ago

I tried your component to display images from my gallery. So I rendered around 100 images but it started to lag. Maybe use Animated Flatlist instead of Animated.ScrollView?

zachgibson commented 5 years ago

Yeah, this is definitely the plan moving forward. I won’t be able to get to it immediately but PRs are definitely welcome. 🙌