什么是“ numberOfLines”函数?

时间:2018-12-30 10:01:10

标签: react-native

我在这段代码中修改了numberOfLines。
但是我还不知道它有什么稳定性。
这是什么?

   <Text numberOfLines={10}>{this.state.bodyText}</Text>

1 个答案:

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