Interspace between text Lines in React native

Solution 1:

Use lineHeight -

  text: {
    color: '#C0C0C0',
    fontSize: 18,
    textAlign: 'justify',
    lineHeight: 30,
  },

Solution 2:

You can use

{'\n'}

inside your Text tag

example :

<Text>{'\n'} Heading : </Text>