diff --git a/docs/Images.md b/docs/Images.md index 5cd3519da..424e2dbc3 100644 --- a/docs/Images.md +++ b/docs/Images.md @@ -75,14 +75,21 @@ A caveat is that videos must use absolute positioning instead of `flexGrow`, sin ## Images From Hybrid App's Resources -If you are building a hybrid app (some UIs in React Native, some UIs in platform code) you can still use images that are already bundled into the app (via Xcode asset catalogs or Android drawable folder): +If you are building a hybrid app (some UIs in React Native, some UIs in platform code) you can still use images that are already bundled into the app. + +For images included via Xcode asset catalogs or in the Android drawable folder, use the image name without the extension: ```javascript ``` -This approach provides no safety checks. It's up to you to guarantee that those images are available in the application. Also you have to specify image dimensions manually. +For images in the Android assets folder, use the `asset:/` scheme: +```javascript + +``` + +These approaches provide no safety checks. It's up to you to guarantee that those images are available in the application. Also you have to specify image dimensions manually. ## Network Images