我想知道是否可以調整圖像大小以適合視圖內部。將圖像調整爲視圖 - 反應原生
這就是我現在
<View style={styles.container}>
<View style={styles.header}>
<Image
source={headerImage}
/>
</View>
<Text style={styles.basicText}>text</Text>
</View>
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff"
},
header: {
height: 200,
backgroundColor: 'red'
},
background: {
width: null,
height: null
},
image: {
}
我想使圖像配合入頭查看有沒有。
你可以嘗試'resizeMode' http://facebook.github.io/react-native/releases/0.45/docs/image.html –