인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

chanbyul53817's profile image
chanbyul53817

asked

Delivery App Clone Coding [with React Native]

Vector icons (react-native-vector-icons)

android font 깨짐 오류 해결

Written on

·

560

1

왜인지는 모르나 android 환경에서 icon 오류가 출력되어 해결방법 남깁니다.

https://phant0m.tistory.com/20
해당링크에 자세히 나와있습니다.

강의에서 fonts 폴더 생성 등 모든 절차는 완료했으나 폰트 사이즈 조절은 되는데 아이콘 자체가 불러와지지 않는 오류는 아래와 같은 방법으로 해결 가능합니다.

android/app/build.gradle (app 내에 있는 gradle.build 입니다.)
폴더에서 apply으로 검색 후 그 아래에

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

아래 코드를 붙여 넣어주세요 스크린샷 2022-10-09 오후 4.12.08.png그럼 정상적으로 출력됩니다.

 

iconreact-native

Answer

This question is waiting for answers
Be the first to answer!
chanbyul53817's profile image
chanbyul53817

asked

Ask a question