반응형
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 |
Tags
- 전국국밥
- 앱개발
- App
- 딥러닝
- 크롤링
- TeachagleMachine
- clone coding
- JavaScript
- selenium
- 정치인
- kaggle
- redux
- 사이드프로젝트
- React
- ReactNative
- 머신러닝
- 강화학습 기초
- coding
- 데이터분석
- 카트폴
- expo
- 클론코딩
- Ros
- 리액트네이티브
- 조코딩
- 강화학습
- Instagrame clone
- pandas
- python
- FirebaseV9
Archives
- Today
- Total
qcoding
[ReactNative_study_2] 로딩 전 파일 불러오기 font/ asset 본문
반응형
-Font 불러오기
expo install expo-font 로 font를 설치한 뒤 font를 가져온다.
아래와 같이 Font로 전체를 가져온다음에
import * as Font from 'expo-font';
await Font.loadAsync(가져올 Font 이름);
으로 가져온다.
-Asset 불러오기
Asset은 크게 2가지로 나눌 수 있다. 현재 내가 가지고 있는 이미지가 있는 경우와 인터넷에서 이미지 주소로가져오는 경우 이다.
1) 이미지를 가지고있는경우
expo install expo-asset으로 설치한 후, 아래와 같이 사용한다. 여기서 가지고 있는 파일의 경우 require를 사용ㅎ한다
await Asset.loadAsync(require('./assets/snack-icon.png'));
2) 이미지를 인터넷에서 주소로 가지고 오는 경우
import { Image } from 'react-native';
// preFetch 메서드를 통해서 가지고 온다.
await Image.prefetch(url);
* 각각을 불러올 때 hook을 사용하면 간편하게 사용할 수 있다. 단 asset에서 image.prefetch는 아래와 같이 사용할 수 없다. 로컬로 가지고 있는 경우에만 사용가능
import { useFonts } from 'expo-font';
const [loaded] = useFonts({
Montserrat: require('./assets/fonts/Montserrat.ttf'),
});
if (!loaded) {
return null;
}
import { Asset } from 'expo-asset';
const [assets] = useAssets([require('path/to/asset.jpg'), require('path/to/other.png')]);
if (!assets) {
return <AppLoading />;
}
반응형
'ReactNative' 카테고리의 다른 글
[ReactNative_study_6]Theme Provider 사용하기 (0) | 2021.11.23 |
---|---|
[ReactNative_study_5]Stack / Tab navigator 결합 (0) | 2021.11.23 |
[ReactNative_study_4]Stack Navigator (0) | 2021.11.23 |
[ReactNative_study_3] Navigator_Tabs / Color mode (0) | 2021.11.23 |
[React Native study_1] Expo API <App_loading> (0) | 2021.11.22 |
Comments