We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e9c17 commit 4832179Copy full SHA for 4832179
packages/core/ui/core/view/index.ios.ts
@@ -853,7 +853,7 @@ export class View extends ViewCommon implements ViewDefinition {
853
854
_setNativeClipToBounds() {
855
const backgroundInternal = this.style.backgroundInternal;
856
- this.nativeViewProtected.clipsToBounds = this.nativeViewProtected instanceof UIScrollView || backgroundInternal.hasBorderWidth() || backgroundInternal.hasBorderRadius();
+ this.nativeViewProtected.clipsToBounds = (this.nativeViewProtected instanceof UIScrollView || backgroundInternal.hasBorderWidth() || backgroundInternal.hasBorderRadius()) && !backgroundInternal.hasBoxShadow();
857
}
858
859
private _setupPopoverControllerDelegate(controller: UIViewController, parent: View) {
0 commit comments