的底部在陣營母語,我有這個Image
標籤:將圖像包含箱
<Image
style={imageStyle.content}
source={{uri: myImageUri}}
/>
其中有這樣的造型:
const imageStyle = StyleSheet.create({
content:{
flexDirection:'column',
alignItems:'flex-end',
justifyContent:'flex-end',
backgroundColor: '#7CFC00',//light green
width: '95%'
height: '75%',
resizeMode: 'contain'
}
});
該圖像生成:
我希望照片出現在底部分配給Image
容器的空間。
但是,我無法做到這一點。在造型中,我指定了alignItems:'flex-end'
和justifyContent:'flex-end'
,但都不起作用。
任何想法如何將圖像推到容器的底部?
嘗試alignSelf:'flex-end' – linasmnew