diff --git a/src/components/ImageView/index.native.js b/src/components/ImageView/index.native.js index d35f634428cb..697bf872d67c 100644 --- a/src/components/ImageView/index.native.js +++ b/src/components/ImageView/index.native.js @@ -74,6 +74,8 @@ class ImageView extends PureComponent { if (!this.props.url) { return; } + + this.setState({imageHeight: undefined, imageWidth: undefined}); ImageSize.getSize(this.props.url).then(({width, height}) => { let imageWidth = width; let imageHeight = height;