diff --git a/docs/Images.md b/docs/Images.md index 56eca6264..d3f6352d1 100644 --- a/docs/Images.md +++ b/docs/Images.md @@ -136,6 +136,15 @@ return ( ); ``` +## iOS Border Radius Styles + +Please note that the following corner specific, border radius style properties are currently ignored by iOS's image component: + +* `borderTopLeftRadius` +* `borderTopRightRadius` +* `borderBottomLeftRadius` +* `borderBottomRightRadius` + ## Off-thread Decoding Image decoding can take more than a frame-worth of time. This is one of the major sources of frame drops on the web because decoding is done in the main thread. In React Native, image decoding is done in a different thread. In practice, you already need to handle the case when the image is not downloaded yet, so displaying the placeholder for a few more frames while it is decoding does not require any code change.