Super slow image load time
timothyerwin opened this issue · 2 comments
timothyerwin commented
Man...this seemed perfect but I have just one image and it loads super slow...every time, no caching....blank screen for some delay like it force download every time...
Have to drop this...
usmanghani127 commented
Man...this seemed perfect but I have just one image and it loads super slow...every time, no caching....blank screen for some delay like it force download every time...
Have to drop this...
You can use ImageComponent prop and provide it your custom image component:
ImageComponent={data => {
const {source: {uri} = {}} = data || {};
return (
<CustomImage
source={uri}
/>
);
}}
Inside your CustomImage component use react-native-fast-image.
samih-sghier commented
@usmanghani127 used your approach but still having the same issues as @timothyerwin probably need to drop this as well