在父视图中,我想垂直居中对齐一段文本,并在视图底部放置另一段文本。每当我添加底部文本时,它都会向上移动垂直中心视图的位置(使其成为剩余空间的垂直中心)。
如何使文本相对于父视图保持垂直居中对齐?更新:我知道我可以使用{位置:"绝对", 底部:0},但想了解弹性盒解决方案。
<View style={{height: 300, borderColor: "black", borderWidth: 1}}>
<View style={{ justifyContent: "center", flex: 1 }}>
<Text>Vert Middle</Text>
</View>
<View>
<Text>Vert Bottom</Text>
</View>
</View>
只需尝试以下代码
<View style={{height: 300, borderColor: "balck", borderWidth: 1}}>
<View style={{ backgroundColor: 'red', justifyContent: "center", flex: 1 }}>
<Text>Vert Middle</Text>
</View>
<View style={{position: 'absolute', bottom: 0}}> // Here is your updations
<Text>Vert Bottom</Text>
</View>
</View>
这将
为你工作。同样@Nitish答案也将起作用。
render() {
return (
<View style={{
height: 300,
borderColor: "black",
borderWidth: 1
}}>
<View style={{
justifyContent: "center",
flex: 1
}}>
<Text>Vert Middle</Text>
</View>
<View style={{
height:0, //Here...
justifyContent: "flex-end",
}}>
<Text>Vert Bottom</Text>
</View>
</View>
);
}