diff --git a/ui/styling/stylers.ios.ts b/ui/styling/stylers.ios.ts index 610cf1367..b31a22f19 100644 --- a/ui/styling/stylers.ios.ts +++ b/ui/styling/stylers.ios.ts @@ -112,6 +112,7 @@ export class DefaultStyler implements definition.stylers.Styler { private static setBorderRadiusProperty(view: view.View, newValue: any) { if (view._nativeView instanceof UIView) { (view._nativeView).layer.cornerRadius = newValue; + (view._nativeView).clipsToBounds = true; } }