Search code examples
textreact-native

Interspace between text Lines in React native


I need to change the space between lines in a text in a React Native for both android and iOS. This is the code in the styles pages:

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

Solution

  • Use lineHeight -

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