他,我正在使用react-native-swiper
组件来显示图片幻灯片。
目前我正在为TermsEnum
组件指定seek
属性,但我想使height
动态,具体取决于滑块中显示的图像的大小。< / p>
在我的情况下,图像是二次的,高度由其宽度决定。因此,swiper显示的所有图像都具有相同的高度。
我当前的Swiper(固定高度)看起来像:
Swiper
&#13;
当我在当前实现中没有指定任何height
时,<Swiper autoplay height={375}>
{bounty.pictures.map((item, key) => {
return (
<View key={key}>
<Image styleName="large-square" source={{ uri: item.image }}></Image>
</View>
)
})}
</Swiper>
组件大约是底层图像大小的两倍。
根据显示的内容,我找不到任何使用动态高度的height
示例。