我使用的是react-native-swiper,但当我实现它时,它被设置为默认高度全屏。有没有办法让滑块高度自动调整到幻灯片内容(高度)?
发布于 2020-09-27 01:49:16
我使用height="100%"实现了这项工作
<Swiper
loop
autoplay
autoplayTimeout={5}
height='100%'
>
</Swiper>https://stackoverflow.com/questions/64080813
复制相似问题