Respostas:
use numberOfLines
https://rnplay.org/plays/ImmKkA/edit
ou se você souber / ou puder calcular a contagem máxima de caracteres por linha, poderá ser usada a substring JS.
<Text>{ ((mytextvar).length > maxlimit) ?
(((mytextvar).substring(0,maxlimit-3)) + '...') :
mytextvar }
</Text>
numberOfLines
parâmetro em um Text
componente:<Text numberOfLines={1}>long long long long text<Text>
Vai produzir:
long long long…
(Supondo que você tenha um contêiner de largura curta.)
ellipsizeMode
parâmetro para mover as reticências para head
ou middle
. tail
é o valor padrão.<Text numberOfLines={1} ellipsizeMode='head'>long long long long text<Text>
Vai produzir:
…long long text
NOTA: O Text
componente também deve incluir style={{ flex: 1 }}
quando as reticências precisam ser aplicadas em relação ao tamanho do seu contêiner. Útil para layouts de linhas, etc.
Você pode usar ellipsizeMode e numberOfLines. por exemplo
<Text ellipsizeMode='tail' numberOfLines={2}>
This very long text should be truncated with dots in the beginning.
</Text>
<View
style={{
flexDirection: 'row',
padding: 10,
}}
>
<Text numberOfLines={5} style={{flex:1}}>
This is a very long text that will overflow on a small device This is a very
long text that will overflow on a small deviceThis is a very long text that
will overflow on a small deviceThis is a very long text that will overflow
on a small device
</Text>
</View>
const styles = theme => ({
contentClass:{
overflow: 'hidden',
textOverflow: 'ellipsis',
display: '-webkit-box',
WebkitLineClamp:1,
WebkitBoxOrient:'vertical'
}
})
render () {
return(
<div className={classes.contentClass}>
{'content'}
</div>
)
}