Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 리액트
- 시퀄라이즈
- 리액트를 다루는 기술
- 일반유저
- Docker
- 라우터
- 머클루트
- 환경변수
- 리눅스
- 솔리디티
- Sequelize
- node.js 교과서 따라하기
- 변수
- 설치
- 자바스크립트
- 전역설치
- wsl
- 우분투
- 머클트리
- 블록체인
- 벨로포터
- centos
- 깃허브
- 쉘스크립트
- npm
- MariaDB
- wget
- 노드
- 이더리움
- immer
Archives
- Today
- Total
코드코코
[리액트네이티브] react-native-vector-icons 사용시 아이콘이 엑박인 경우 본문
상황
npm install react-native-vector-icons --save
react-native-vector-icons를 설치했지만 엑박으로 뜨면서 아이콘이 나타나지 않음
해결
안드로이드의 경우
android/app/build.gradle 파일을 열고 조금 내리다보면
apply from: "../../node_modules/react-native/react.gradle"
이렇게 적힌 곳이 보일 것이다.
여기 바로 아래에 아래 코드를 입력해주고 다시 빌드해주면 아이콘이 잘 보이는 걸 확인할 수 있다.
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
참고 : https://github.com/oblador/react-native-vector-icons#android
GitHub - oblador/react-native-vector-icons: Customizable Icons for React Native with support for image source and full styling.
Customizable Icons for React Native with support for image source and full styling. - GitHub - oblador/react-native-vector-icons: Customizable Icons for React Native with support for image source a...
github.com