1

I'm using React Native to create a Korean app.

I want to use different fonts such as Korean and English. For example, 헬로우 World In this case, Is there a way to use different fonts?

I'd appreciate it if someone could tell me how.

  • <. Text. > 헬로우 World < /Text. > in this case I would like to apply "헬로우" and "World"'s font differently. – sunghyun lee May 03 '20 at 10:14
  • i think u are using different characters in each language. should create a json for each language that contains a key:value paire for each world with same key in all files and equivalent value in the language. with changing language u can change json file, font or any thing else – Ali Abdollahi May 06 '20 at 10:13

1 Answers1

1

You can change the font-family of the app for different languages.

Based on the user's selected language, change the font-family to something specific. You can store the font family in a centralized store like Redux.

  • <. Text. > 헬로우 World < /Text. > in this case I would like to apply "헬로우" and "World"'s font differently. – sunghyun lee May 03 '20 at 10:14