Skip to content

Instantly share code, notes, and snippets.

@devethan
Last active May 7, 2021 05:46
Show Gist options
  • Save devethan/ef0091dfd910856c5059e3f301a543df to your computer and use it in GitHub Desktop.
Save devethan/ef0091dfd910856c5059e3f301a543df to your computer and use it in GitHub Desktop.
react-native에서 중첩 텍스트를 사용할 때의 유의사항

react-native에서 중첩 텍스트를 사용할 때의 유의사항

[Check] Android 플랫폼에서만 발생하는 이슈

Broken

<Text style={{fontFamily: 'customFontFamily-Bold'}}>
  It seems to be
  <Text style={{fontFamily: 'customFontFamily-LightItalic'}}>
    broken
  </Text>
</Text>

아래의 'customFontFamily-LightItalic' 폰트 스타일을 인식하지 못하고 시스템 폰트로 설정된다.

Recommanded

<Text>
  <Text style={{fontFamily: 'customFontFamily-Bold'}}>
    It seems to be
  </Text>
  <Text style={{fontFamily: 'customFontFamily-LightItalic'}}>
    the solution
  </Text>
</Text>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment