diff --git a/src/CommunityToolkit.Maui.Core/Views/RoundedView.macios.cs b/src/CommunityToolkit.Maui.Core/Views/RoundedView.macios.cs index 9a2e2f9c6..8cfd8144c 100644 --- a/src/CommunityToolkit.Maui.Core/Views/RoundedView.macios.cs +++ b/src/CommunityToolkit.Maui.Core/Views/RoundedView.macios.cs @@ -55,6 +55,13 @@ public override void Draw(CGRect rect) Layer.MasksToBounds = true; } + /// + public override void LayoutSubviews() + { + base.LayoutSubviews(); + Draw(Frame); + } + static CGPath? GetRoundedPath(CGRect rect, NFloat left, NFloat top, NFloat right, NFloat bottom) { var path = new UIBezierPath();