react-native-fast-image
react-native-fast-image copied to clipboard
Need FastImage Preload Promise to know when preload done to download all images
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;
}
See #437