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
renderError
prop. - 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
&prefetch
functions fromImage
.
0.6.0
0.5.0
- Separates React and React Native imports as required by React Native 0.26.
ProgressBarAndroid
is now default indicator on Android.- No more
peerDependencies
. - Breaking change: Project refactored to ES2016, if importing subcomponents with
require
consider usingimport
instead 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
indicatorProps
prop. color
andbackground
color props are now deprecated.
Other changes:
- Loading now has an
indeterminate
state when image is loading but no data has been received. - Added
threshold
prop 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
renderIndicator
function.
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).