React-Native組件之Text內文字垂直居中方案


1 style: {
2   height: 100,
3   textAlign: 'center',
4   textAlignVertical: 'center',  
5 }

以上方法在Android上顯示水平垂直居中, 但在IOS上只能水平居中, 方法是在IOS上添加lineHeight: 100, 如下

1 style: {
2   height: 100,
3   textAlign: 'center',
4   textAlignVertical: 'center',
5   ...Platform.select({
6      ios: { lineHeight: 100},
7      android: {}
8    })
9 }

別忘了在react-native模塊中導入組件 StyleSheet和Platform


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM