小能豆

如何在 React Native 中将图像宽度设置为 100% 并将高度设置为自动?

javascript

我正在尝试在滚动视图中显示图像列表。宽度应为 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>

我尝试了 width: null、height: null、flex: 1、alignSelf 等各种组合。上述解决方案几乎可行,只是高度不是动态的。图像的某些部分不可见。


阅读 67

收藏
2024-06-12

共1个答案

小能豆

我正在尝试在滚动视图中显示图像列表。宽度应为 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>

我尝试了 width: null、height: null、flex: 1、alignSelf 等各种组合。上述解决方案几乎可行,只是高度不是动态的。图像的某些部分不可见。

2024-06-12