diff --git a/releases/next/docs/image.html b/releases/next/docs/image.html
index 158374e86eb..6a1d15bd02b 100644
--- a/releases/next/docs/image.html
+++ b/releases/next/docs/image.html
@@ -705,11 +705,39 @@ exports.examples return (
<Image
source={require('image!LegacyImage')}
- style={styles.base}
/>
);
},
},
+ {
+ title: 'Bundled images',
+ description:
+ 'Images shipped in a separate native bundle',
+ render: function() {
+ return (
+ <View style={{flexDirection: 'row'}}>
+ <Image
+ source={{
+ url: 'ImageInBundle',
+ bundle: 'UIExplorerBundle',
+ width: 100,
+ height: 100,
+ }}
+ style={{borderColor: 'yellow', borderWidth: 4}}
+ />
+ <Image
+ source={{
+ url: 'ImageInAssetCatalog',
+ bundle: 'UIExplorerBundle',
+ width: 100,
+ height: 100,
+ }}
+ style={{marginLeft: 10, borderColor: 'blue', borderWidth: 4}}
+ />
+ </View>
+ );
+ },
+ },
];
var fullImage = {uri: 'http://facebook.github.io/react/img/logo_og.png'};