인프런 커뮤니티 질문&답변
Check the render method of `TabBarIcon`.
작성
·
128
0
이런게 뜨는데 npm라이브러리가 잘못된건가요?
react-native-cli라 expo라이브러리를 쓸수도 없고...
답변 3
0
Ryu JangHyun
질문자
Option: With Gradle (recommended)
To make font management smoother on Android, use this method:
Edit
android/app/build.gradle(NOTandroid/build.gradle) and add:apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")To customize the fonts being copied, use:
project.ext.vectoricons = [ iconFontNames: [ 'MaterialIcons.ttf', 'EvilIcons.ttf' ] // Specify font files ] apply from: file("../../node_modules/react-native-vector-icons/fonts.gradle")
이걸 보니 gladle 파일에 iconFontNames를 추가하니까 되더군요.
0
0





