리액트 네이티브에서 이미지 다운로드 받는 방법
FileSystem.downloadAsync(uri, fileUri, options)
uri를 이용해서 파일 다운로드. local 파일 디렉토리는 먼저 존재해야한다.
Example
FileSystem.downloadAsync(
'http://techslides.com/demos/sample-videos/small.mp4',
FileSystem.documentDirectory + 'small.mp4'
)
.then(({ uri }) => {
console.log('Finished downloading to ', uri);
})
.catch(error => {
console.error(error);
});