最佳答案
我想在React Native的Text组件中插入一个新行(如\r\n, <br />)
如果我有:
<text>
<br />
Hi~<br />
this is a test message.<br />
</text>
然后React Native渲染Hi~ this is a test message.
它是可能的渲染文本添加一个新的行像这样:
Hi~
this is a test message.