React Native에서 Icon이 한자로 나타나는 오류

윤학·2023년 6월 10일
0

React-Native

목록 보기
1/2
post-thumbnail

React Native로 만든 앱을 구동시켰더니 나오던 아이콘이 한자로 표기가 되었다.

react-native-elements의 라이브러리로 아이콘을 사용했는데 문서를 보면 다음과 같이 나타나있다.

The icon sets in React Native Elements are made possible through react-native-vector-icons.

react-native-vector-icons를 안드로이드에서 사용하기 위해선 코드 한줄을 추가하고 다시 빌드해보자.

android/app/src/build.gradle

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

다시 잘 나타나는 것을 볼 수 있다!

profile
해결한 문제는 그때 기록하자

0개의 댓글