gpt4 book ai didi

android - react native ScrollView 不显示图像

转载 作者:行者123 更新时间:2023-11-29 00:55:30 24 4
gpt4 key购买 nike

下面是我的 React Native 应用程序代码。但它没有显示图像。我将容器样式从 ScrollView 移动到以不正确方式显示的图像。

<ScrollView vertical={true} style={styles.container} >
<Image
style={{ width: '100%', height: '100%' }}
source={{ uri: this.props.navigation.state.params.PassedURL }}>
</Image>
</ScrollView>

这里是容器样式

container: {
flex: 1,
backgroundColor: 'gray',
padding: 10
},

屏幕上没有其他东西可以渲染

最佳答案

不要在 ScrollView 中使用 flex:1,如果不能解决问题,请尝试按照其他人的建议设置特定的宽度和高度

<ScrollView vertical={true} style={styles.container} >
<Image
style={{ width: 200, height: 200 }}
source={{ uri: this.props.navigation.state.params.PassedURL }}>
/>
</ScrollView>

容器样式

container: {
backgroundColor: 'gray',
padding: 10
},

编辑:

如果你想让它填充到全宽,只需将宽度设置为 100%,高度将相应调整,并可能根据你的需要设置 resizeMode="contain"或 "cover"

关于android - react native ScrollView 不显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55164176/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com