Releases: oblador/react-native-image-progress
Releases · oblador/react-native-image-progress
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
- Breaking: Children are now always rendered, even during loading.
- Potentially breaking: Fixes deprecation warnings added in React Native 0.43-0.45.
- Adds support for custom error messages or image fallbacks using the
renderErrorprop. - Adds support for custom image components via
createImageProgress. - Fixes a bug where the indicator will sometimes continue spinning even when the image fails to load.
- Expose static
getSize&prefetchfunctions fromImage.
0.6.0
0.5.0
- Separates React and React Native imports as required by React Native 0.26.
ProgressBarAndroidis now default indicator on Android.- No more
peerDependencies. - Breaking change: Project refactored to ES2016, if importing subcomponents with
requireconsider usingimportinstead or something likerequire('react-native-progress/Bar').default.
0.4.0
Breaking changes
- Progress indicators have been externalized to the react-native-progress module.
- Progress indicator props are now passed as an object on the
indicatorPropsprop. colorandbackgroundcolor props are now deprecated.
Other changes:
- Loading now has an
indeterminatestate when image is loading but no data has been received. - Added
thresholdprop to remove flashing of loading indicator when images are cached. - Removed lodash dependency.
0.3.1
0.3.0
Breaking changes:
- Dropped React Native 0.8 support.
- Passing indicator color as a style no longer works, use attribute instead.
- Color is no longer passed to the
renderIndicatorfunction.
Other changes:
- Better support for React Native 0.12+
- Doesn't show indicators on platforms that doesn't support underlying
onLoad*events (Android in other words).