diff --git a/Libraries/Image/Image.ios.js b/Libraries/Image/Image.ios.js index 8127f146e..e2f1b12f3 100644 --- a/Libraries/Image/Image.ios.js +++ b/Libraries/Image/Image.ios.js @@ -35,8 +35,10 @@ const ImageViewManager = NativeModules.ImageViewManager; * including network images, static resources, temporary local images, and * images from local disk, such as the camera roll. * - * This example shows both fetching and displaying an image from local - * storage as well as one from network. + * This example shows fetching and displaying an image from local storage + * as well as one from network and even from data provided in the `'data:'` uri scheme. + * + * > Note that for network and data images, you will need to manually specify the dimensions of your image! * * ```ReactNativeWebPlayer * import React, { Component } from 'react'; @@ -53,6 +55,10 @@ const ImageViewManager = NativeModules.ImageViewManager; * style={{width: 50, height: 50}} * source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}} * /> + * * * ); * }