如何自动调整 react-native-swiper 组件的高度
how to Auto-adjusting height of react-native-swiper component
我正在使用 react-native-swiper
,但是当我实施它时,它被设置为全屏的默认高度。
有没有办法让swiper高度自动调整到幻灯片内容(高度)?
我使用 height="100%"
的 Swiper
完成了这项工作
<Swiper
loop
autoplay
autoplayTimeout={5}
height='100%'
>
</Swiper>
我正在使用 react-native-swiper
,但是当我实施它时,它被设置为全屏的默认高度。
有没有办法让swiper高度自动调整到幻灯片内容(高度)?
我使用 height="100%"
的 Swiper
<Swiper
loop
autoplay
autoplayTimeout={5}
height='100%'
>
</Swiper>