react native text break line code example
Example 1: react native text wrap
<View
style={{ flexDirection: 'row' }}
>
<Text style={{ flexShrink: 1 }}>
Really really long text...
</Text>
</View>
Example 2: how to place a line break in react native
you need use {'\n'} as line breaks in text component, whenever you need to add line break in react native application