Answers for "increase line spacing react native"

7

react native break line text if too big

<View
    style={{ flexDirection: 'row' }}
> 
   <Text style={{ flexShrink: 1 }}>
       Really really long text...
   </Text>
</View>
Posted by: Guest on April-21-2020
9

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
Posted by: Guest on July-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language