反应本机文本在中间中断单词

react native text breaks word in the middle

我在几个嵌套的视图组件中的反应本机文本组件中显示文本。
我从调用的服务中检索此文本。
文本因调用而异。
在某些情况下,React Native(iOS 和 android)会自动在单词中间打断文本。
例子:我有一个 d
og

我如何强制 React Native 将单词放在一起/只在单词之间换行?

To Break the Text

<View style={styles.container}>
  <Text style={styles.paragraph}>
   Hello This is an example of 
   {'\n'}
   multiline text
</Text>
  <Text style={styles.paragraph}>{`Here is an other way to 
     set multiline text.`}</Text>
 </View>

我们找到了解决办法:我们在前端过滤掉不间断空格。 我们不知道 how/where 我们内容中的空格(导入到我们的数据库并使用后端服务在前端检索)被转换为不间断空格。