最佳答案
在使用 position:absolute
的情况下,使用 justifyContent
或 alignItems
似乎不能使元素集中。有一个解决办法使用 marginLeft
,但不显示相同的所有设备,甚至使用尺寸来检测设备的高度和宽度。
bottom: {
position: 'absolute',
justifyContent: 'center',
alignItems: 'center',
top: height*0.93,
marginLeft: width*0.18,
},
bottomNav: {
flexDirection: 'row',
},