web-dev-qa-db-ja.com

Reactネイティブのテキスト行間のスペース

React Nativeのテキストの行間のスペースをAndroidとiOSの両方で変更する必要があります。これは、スタイルページのコードです:text:{color: '#C0C0C0'、fontSize:18、textAlign: 'justify'、}、

38
user3521011

lineHeightを使用-

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