zachgibson / react-native-parallax-swiper

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

ParallaxSwiper Props Height #23

Closed yedeba closed 6 years ago

yedeba commented 6 years ago

Hi, is possible height control of ParallaxSwiper? Thanks

zachgibson commented 6 years ago

Yes you can, just put ParallaxSwiper in a container and size it accordingly, it will fill its container. I might end up adding these as props.

e.g.

<View style={{ width: 200, height: 400 }}>
  <ParallaxSwiper>
    ...
  </ParallaxSwiper>
</View>