React Native:为什么文本组件下没有显示长文本?

React Native: Why long text is not shown under Text component?

需要显示从服务器获取的长文本。

我正在使用 web storm 和 react native 0.57

<Text>{this.state.responseText}</Text>

应该可以查看文本标签下的长文本。为什么文本组件下不显示长文本?

我认为你应该使用 numberOfLine = {} 属性 文本组件。

您可以编辑文本组件的样式并增大字体大小

<Text style={{fontSize: 40}}>{this.state.responseText}</Text>

是的,我也遇到了同样的问题。使用 WebView 而不是文本组件。

<WebView
        originWhitelist={['*']}
        source={{html: this.state.responseText}}}
/>