Progressive Image Loading with React Native
npm install react-native-image-blur-loadingReact Native component for progressive image loading.

Run in your root project directory
using NPM
``bash`
$ npm install react-native-image-blur-loading`
or using yarnbash`
$ yarn add react-native-image-blur-loading
`jsx
import React, { Component } from 'react';
import { View } from 'react-native';
import ImageBlurLoading from 'react-native-image-blur-loading'
// ...
const MyComponent = () => {
return (
source={{ uri: 'https://picsum.photos/id/1/1000/1000' }}
style={{ flex: 1, width: 'auto', height: 'auto', resizeMode: 'contain' }}
/>
)
}
`
| The source of the thumbnail image. Should be a low resolution version of the image used in source. | ImageSourcePropType | No | - |
| withIndicator | Displaying ActivityIndicator component while the image is still loading. | boolean | No | true |
| fastImage | uses the FastImage component (react-native-fast-image) to handle image caching. | boolean | No | false |
| resizeMode | Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to cover. | ResizeMode | No | cover` |