【发布时间】:2017-08-01 01:14:10
【问题描述】:
我需要在 Android 和 iOS 的 React Native 中更改文本中的行间距。 这是样式页面中的代码:
text: {
color: '#C0C0C0',
fontSize: 18,
textAlign: 'justify',
}
【问题讨论】:
标签: text react-native
我需要在 Android 和 iOS 的 React Native 中更改文本中的行间距。 这是样式页面中的代码:
text: {
color: '#C0C0C0',
fontSize: 18,
textAlign: 'justify',
}
【问题讨论】:
标签: text react-native
使用lineHeight -
text: {
color: '#C0C0C0',
fontSize: 18,
textAlign: 'justify',
lineHeight: 30,
},
【讨论】:
你可以使用
{'\n'}
在您的文本标签内
示例:
<Text>{'\n'} Heading : </Text>
【讨论】: