使用numberOfLines
原文链接:https://www.f2er.com/react/301213.htmlhttps://rnplay.org/plays/ImmKkA/edit
或者如果您知道/或可以计算每行的最大字符数,则可以使用JS子字符串.
<Text>{ ((mytextvar).length > maxlimit) ? (((mytextvar).substring(0,maxlimit-3)) + '...') : mytextvar } </Text>