intellidev1991/react-native-image-slider-box

Super slow image load time

timothyerwin opened this issue · 2 comments

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...

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.

@usmanghani127 used your approach but still having the same issues as @timothyerwin probably need to drop this as well