gpt4 book ai didi

react-native - 在 React Native 中缩放图像

转载 作者:行者123 更新时间:2023-12-02 17:14:16 24 4
gpt4 key购买 nike

像在 HTML 中一样缩放图像。 img {高度:100%; width:100%} 在 native react 中。

我已经尝试过 resizeMode?: enum('cover', 'contain', 'stretch', 'repeat', 'center') 但它们都不适用于我的情况。

<View style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingTop: Constants.statusBarHeight,
backgroundColor: '#ecf0f1',
flexDirection:'row'
}}>
<View style={{flex:1, backgroundColor:'yellow'}}>
<Image
style={{width: 50, height: 50}}
resizeMode="stretch"
source={{uri: 'http://aristotlebuzz.com/wp-content/uploads/2017/01/Facebook.png'}}
/>
</View>
<View style={{flex:1, backgroundColor:"red"}}>
<Text>afdafda</Text>
</View>

</View>

https://snack.expo.io/ByhjFQo1M

最佳答案

您必须将 {height: 50} 添加到图像的容器中...

...并将图像大小设置为 {flex: 1}

...并正确拼写 stretch。 🙃

所以替换:

<View style={{flex: 1, backgroundColor: 'yellow'}}>
<Image
style={{width: 50, height: 50}}
resizeMode="strech"
source={{uri: 'http://aristotlebuzz.com/wp-content/uploads/2017/01/Facebook.png'}}
/>

与:

<View style={{flex: 1, height: 50, backgroundColor: 'yellow'}}>
<Image
style={{flex: 1}}
resizeMode="stretch"
source={{uri: 'http://aristotlebuzz.com/wp-content/uploads/2017/01/Facebook.png'}}
/>
</View>

关于react-native - 在 React Native 中缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47333060/

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