DylanVann / react-native-fast-image

🚩 FastImage, performant React Native image component.
MIT License
8.1k stars 1.48k forks source link

Need FastImage Preload Promise to know when preload done to download all images #899

Open putuoka opened 2 years ago

putuoka commented 2 years ago

Need to know when preload done to download all images (depend on internet connection & hosting) either with array or for loops like this

for (let index = 0; index < jsonData.length; index++) {
      //urlOfImages.push({uri: jsonData[index]});
      FastImage.preload([{uri: jsonData[index]}]);
      count = index;
    }
nicomontanari commented 2 years ago

See #437