我在这段代码中修改了numberOfLines。
但是我还不知道它有什么稳定性。
这是什么?
<Text numberOfLines={10}>{this.state.bodyText}</Text>
答案 0 :(得分:0)
numberOfLines
用于限制屏幕上的可见文本。
来自文档:(https://facebook.github.io/react-native/docs/text#numberoflines)
Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines does not exceed this number.
This prop is commonly used with ellipsizeMode.