在父视图中,我想将一段文本垂直居中对齐,并在视图底部放置另一个文本。每当我添加底部文本时,它都会向上移动垂直居中视图的位置(使其成为垂直居中剩余空间)。
如何保持文本相对于父视图垂直居中对齐?更新:我知道我可以使用 {position: 'absolute', bottom:0} 来做到这一点,但想了解 flex-box 解决方案。
<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>