React-native Text文字垂直居中的问题

React-native中文字垂直居中的坑

iPhoneX 设置了 justifyContent 居中,但是iPhone12promax不居中解决方案
在Text外部包裹一层view,flex属性放在view里,文字属性放在textstyle里

代码示例


              
                { tipList[0] }
              
            

textSuperViewStyle: {
    flex: 1,
    height: scale(defaultHeight, true),
    lineHeight: scale(defaultHeight, true),
    position: 'absolute',
    left: positionLeft + 20,
    right: positionRight + 14,
    justifyContent: 'center'
  },

  textStyle: {
    color: '#FF6600',
    fontSize: 12
  }

你可能感兴趣的:(React-native Text文字垂直居中的问题)