gpt4 book ai didi

position - React Native绝对定位水平居中

转载 作者:行者123 更新时间:2023-12-03 05:18:43 28 4
gpt4 key购买 nike

似乎使用 position:absolute 时,元素无法使用 justifyContentalignItems 居中。有一种解决方法可以使用 marginLeft,但即使使用尺寸来检测设备的高度和宽度,也不会在所有设备上显示相同的内容。

  bottom: {
position: 'absolute',
justifyContent: 'center',
alignItems: 'center',
top: height*0.93,
marginLeft: width*0.18,
},
bottomNav: {
flexDirection: 'row',
},

最佳答案

将您想要在 View 中居中的子项包裹起来,并使 View 成为绝对 View 。

<View style={{position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center'}}>
<Text>Centered text</Text>
</View>

关于position - React Native绝对定位水平居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37317568/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com