diff --git a/docs/Images.md b/docs/Images.md index 65ebc2903819af..d2eca6a996de46 100644 --- a/docs/Images.md +++ b/docs/Images.md @@ -186,13 +186,15 @@ On the user side, this lets you annotate the object with useful attributes such ## Background Image via Nesting -A common feature request from developers familiar with the web is `background-image`. To handle this use case, simply create a normal `` component and add whatever children to it you would like to layer on top of it. +A common feature request from developers familiar with the web is `background-image`. To handle this use case, you can use the `` component, which has the same props as ``, and add whatever children to it you would like to layer on top of it. + +You might not want to use `` in some cases, since the implementation is very simple. Refer to ``'s [source code](https://github.com/facebook/react-native/blob/master/Libraries/Image/ImageBackground.js) for more insight, and create your own custom component when needed. ```javascript return ( - + Inside - + ); ```