react-native Text 文字垂直居中

请注意label Text组件文本的容器是否有padding,这会误导以为没有居中 

import {Platform} from 'react-native';
 
label: {
    fontSize: OASize(11),
    color: OAColor.descText,
    height: OASize(20),
    textAlign: 'center',
    textAlignVertical: 'center',
    ...Platform.select({
      ios: { lineHeight: OASize(20) },
      android: {}
    })
}

 

你可能感兴趣的:(react-native)