我想在React Native的文本组件中插入一个新行(如\r\n, <br />)。

如果我有:

<text>
<br />
Hi~<br />
this is a test message.<br />
</text>

然后React Native渲染Hi~这是一个测试消息。

它是可能的渲染文本添加一个新的行像这样:

Hi~
this is a test message.

当前回答

对此有两种主要的解决方案。

方法一:只要在下面加上“\n”就可以了

<Text>
   First Line {'\n'} Second Line.
</Text>

方法2:在字符串字面量中添加换行符,如下所示。

 <Text>
   `First Line  
   Second Line`.
 </Text>

要了解更多信息,请参考下面的教程。

https://sourcefreeze.com/how-to-insert-a-line-break-into-a-text-component-in-react-native/

其他回答

只需在Text标签中放入{'\n'}

<Text>

   Hello {'\n'}

   World!

</Text>

你可以这样做:

{'创建\ nYour帐户'}

<Text>
Hi~{"\n"}
this is a test message.
</Text>

你可以像这样使用' ':

<Text>{`Hi~
this is a test message.`}</Text>

这应该做到:

<Text>
Hi~{"\n"}
this is a test message.
</Text>