mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at offline-indicator 25 lines 572 B view raw
1/** 2 * Copyright (c) JOB TODAY S.A. and its affiliates. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 * 7 */ 8 9import {useEffect} from 'react' 10import {Image} from 'react-native' 11import {ImageSource} from '../@types' 12 13const useImagePrefetch = (images: ImageSource[]) => { 14 useEffect(() => { 15 images.forEach(image => { 16 //@ts-ignore 17 if (image.uri) { 18 //@ts-ignore 19 return Image.prefetch(image.uri) 20 } 21 }) 22 }, [images]) 23} 24 25export default useImagePrefetch