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 | 29 | 30 | 31 |
Tags
- 행당역
- Configmap
- 쿠버네티스
- docker
- React Native
- describe-instances
- 9억이하
- 천호태영아파트
- nexus proxy
- 답십리 파크자이
- 행당대림아파트
- 응봉현대아파트
- pod
- sql 공유
- 명령어
- kubectl
- aws cli
- k8s
- ELB
- linux 파일복사
- 행당한진아파트
- 2025년정책
- statefulset
- 서버간 파일전송
- Ansible
- 황학동롯데캐슬
- private repostiroy
- 아파트
- EC2
- 5호선
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
React Native 하루 기록 - Expo Icon 사용하기 본문
반응형
Expo에서 제공하는 기본 Icon 사용
1. 위 페이지 접속 후 원하는 Icon을 검색
2. 검색 후 원하는 Icon을 선택하여 복사해서 사용
3. 소스코드에 적용하기
import { Ionicons } from '@expo/vector-icons';
const IconButton = (props) => {
return (
<View style={{paddingHorizontal : 6}}>
<Ionicons name={props.name} size={24} color="black" />
</View>
);
}
반응형
'IT > FrontEnd' 카테고리의 다른 글
React Native 하루 기록 - Style 적용하기 (0) | 2022.12.12 |
---|---|
React Native 하루 기록 - map, ScrollView (0) | 2022.12.10 |
React Native 하루 기록 - SafeAreaView (0) | 2022.12.09 |
React Native 하루 기록 - custom Hook (0) | 2022.12.09 |
React Native 하루 기록 - React Hook (0) | 2022.12.08 |
Comments