text react native max lines code example
Example 1: react native text wrap
<View
style={{ flexDirection: 'row' }}
>
<Text style={{ flexShrink: 1 }}>
Really really long text...
</Text>
</View>
Example 2: text number of lines react native
<Text numberOfLines={2} ellipsizeMode='tail'>
long string
</Text>