react-native: react-native-vector-icons 설치
버전
"react-native-vector-icons": "^9.1.0",
"@types/react-native-vector-icons": "^6.4.10",
"react-native": "0.68.2",
react-native-vector-icons 설치
yarn add react-native-vector-icons
# if use typescript
yarn add @types/react-native-vector-icons -D
# install on ios
cd ios && pod install
IOS용 구성
info.list
에 추가<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Octicons.ttf</string>
<string>Zocial.ttf</string>
</array>
Android용 구성
android/app/build.gradle
파일android/build.gradle
이 아님apply plugin: "com.android.application"
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" // <-- this line
확인하다
import Icon from 'react-native-vector-icons/FontAwesome';
const myIcon = <Icon name="rocket" size={30} color="#900" />;
Reference
이 문제에 관하여(react-native: react-native-vector-icons 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hieunh1801/react-native-install-react-native-vector-icons-2d19텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)