티스토리 뷰
안녕하세요 강정호 입니다
오늘은 이미지들을 Preloading 하는 것에 대해서 알아보겠습니다.
먼저 다운로드해야 할 라이브러리 입니다.
npm install @expo/vector-icons
npm install expo-app-loading
npm install expo-font
npm install expo-asset
npm add @expo/vector-icons
npm add expo-app-loading
import { StatusBar } from 'expo-status-bar';
import React, { useState, useEffect } from 'react';
import { Ionicons } from "@expo/vector-icons";
import { Text, View } from 'react-native';
import AppLoading from "expo-app-loading";
import * as Font from "expo-font";
import { Asset } from 'expo-asset';
export default function App() {
const [loaded, setLoaded] = useState(false);
const preLoad = async () => {
try{
await Font.loadAsync({
...Ionicons.font
});
await Asset.loadAsync([require("./assets/instagram_logo.png")]);
setLoaded(true);
}catch(e){
console.log(e);
}
};
useEffect(() => {
preLoad();
}, []);
return loaded ? (
<View>
<Text>Open up App . start working with your app</Text>
</View>
) : (
<AppLoading />
);
}
'프로젝트' 카테고리의 다른 글
[인스타그램클론코딩] #10.6 AuthContext part One (useContext) (0) | 2021.01.30 |
---|---|
[인스타그램클론코딩] #10.2 Preloading Cache (apollo-cache-persist) (0) | 2021.01.26 |
[인스타그램클론코딩] #10.0 Creating the Project 프로젝트 환경설정 (0) | 2021.01.24 |
[인스타그램클론코딩] #8.2 Search Screen UI Part Two(styled-component 학습) (0) | 2021.01.12 |
[인스타그램클론코딩] #7.4 toggleLike on Post Component(useMutation 사용) (0) | 2020.12.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring boot
- 2023년
- push_back
- 내년은 빡세게!!
- GIT
- 깃허브
- 항해플러스백엔드
- ```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
- 폭포수
- 깃
- 항해솔직후기
- 월부닷컴
- resize
- docker
- github
- 개발자 회고
- Use case
- front
- 인셉션
- 관계대수
- 부동산공부
- 항해플러스후기
- 유즈케이스
- 도커
- Inception
- pop_back
- 재테크공부
- 파라메터
- 열반스쿨기초반
- 월급쟁이부자들
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함