0

在父视图中,我想将一段文本垂直居中对齐,并在视图底部放置另一个文本。每当我添加底部文本时,它都会向上移动垂直居中视图的位置(使其成为垂直居中剩余空间)。

如何保持文本相对于父视图垂直居中对齐?更新:我知道我可以使用 {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>


4

2 回答 2

2

试试下面的代码

      <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>
于 2019-01-23T12:13:58.707 回答
0

这对你有用。@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>
    );
}
于 2019-01-23T12:44:28.227 回答