React Native Text 文字垂直居中
import {Platform} from 'react-native';style: {fontSize: 28,height: 40,textAlign: 'center',textAlignVertical: 'center',...Platform.select({ios: { lineHeight: 40 },androi...
·
import {Platform} from 'react-native';
style: {
fontSize: 28,
height: 40,
textAlign: 'center',
textAlignVertical: 'center',
...Platform.select({
ios: { lineHeight: 40 },
android: {}
})
}
textAlignVertical: 'center' 垂直居中只对android生效
ios要使用 lineHeight: 40 但是这对android是无效的
更多推荐



所有评论(0)