style: { height: 100, textAlign: 'center', textAlignVertical: 'center', } 以上方法在Android上显示水平垂直居中, 但在IOS上只能水平居中, 方法是在IOS上添加lineHeight: 100, 如下 style: { height: 100, textAlign: 'center', textAlignVertical: 'center', ...Platform.select({ ios: { lineHeigh…