小编典典

如何将换行符插入React Native 中的组件?

all

我想在 React Native 的 Text 组件中插入一个新行(如 \r\n、
)。

如果我有:

<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.

阅读 112

收藏
2022-03-11

共1个答案

小编典典

这应该这样做:

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