我正在尝试在滚动视图中显示图像列表。宽度应该是 100%,而高度应该是自动的,保持纵横比。
我所做的搜索指向了提供全屏背景样式的各种解决方案。
const styles = StyleSheet.create({
image: {
width: null,
height: 300,
resizeMode: 'cover'
}
});
<ScrollView style={{flex: 1}}>
<Image style={styles.image} source={require('../../../images/collection-imag1.png')}/>
<Image style={styles.image} source={require('../../../images/collection-imag2.png')}/>
</ScrollView>
我尝试了各种宽度的组合:null、height:null、flex:1、alignSelf 等。上面的解决方案几乎可以工作,除了高度不是动态的。部分图像不可见。