0
我有一個圖像,當我想使用resizeMode =「cover」使圖像變大時,部分圖像被切斷。如何解決這個問題?圖像用resizeMode覆蓋
render() {
return (
<View style={styles.container}>
<Image
style={styles.imgStyleGoogle}
source={{uri: 'my.png'}}
/>
<View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
marginLeft: ratio * 5,
marginRight: ratio * 5,
},
imgStyleGoogle: {
flex: 1,
height: ratio*25,
width: ratio*100,
resizeMode:'cover',
}
})
爲什麼不'resizeMode =「包含」'? – Cherniv