질문드립니다
#131
Replies: 1 comment
-
안녕하세요 @thilast 두 코드 모두 이미지를 캐싱하기 위한 코드입니다. 감사합니다. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
안녕하세요 책으로 공부하다 풀리지 않는 의문이 있어서 질문드립니다.
const cacheImages = images => {
return images.map(image => {
if (typeof image === 'string') {
return Image.prefetch(image);
} else {
return Asset.fromModule(image).downloadAsync();
}
});
};
답변 감사드립니다.
Beta Was this translation helpful? Give feedback.
All reactions