Merge pull request #4256 from rreusser/note-on-known-issue-for-3198

[Docs] Additional note for Android borderRadius clipping #3198
This commit is contained in:
Brent Vatne 2015-11-25 12:47:13 -08:00
commit a00bd33295
1 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,9 @@ Adding these to your apps should be made simpler. Here's [an example](https://gi
### The `overflow` style property defaults to `hidden` and cannot be changed on Android
This is a result of how Android rendering works. This feature is not being worked on as it would be a significant undertaking and there are many more important tasks.
This is a result of how Android rendering works. This feature is not being worked on as it would be a significant undertaking and there are many more important tasks.
Another issue with `overflow: 'hidden'` on Android: a view is not clipped by the parent's `borderRadius` even if the parent has `overflow: 'hidden'` enabled the corners of the inner view will be visible outside of the rounded corners. This is only on Android; it works as expected on iOS. See a [demo of the bug](https://rnplay.org/apps/BlGjdQ) and the [corresponding issue](https://github.com/facebook/react-native/issues/3198).
### No support for shadows on Android