React native中文本行之间的空格

use*_*011 42 text react-native

我需要在Android和iOS的React Native中更改文本行之间的空间.这是样式页面中的代码:text:{color:'#C0C0C0',fontSize:18,textAlign:'justify',},

vin*_*ayr 88

使用lineHeight-

  text: {
    color: '#C0C0C0',
    fontSize: 18,
    textAlign: 'justify',
    lineHeight: 30,
  },
Run Code Online (Sandbox Code Playgroud)

  • 请注意,嵌套的Text组件似乎并不继承lineHeight (2认同)