Clips the view to its bounding frame, with the specified corner radius.
SDKs
- iOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Framework
- Swift
UI
Declaration
Parameters
antialiased
A Boolean value that indicates whether smoothing is applied to the edges of the clipping rectangle.
Return Value
A view that clips this view to its bounding frame.
Discussion
By default, a view’s bounding frame only affects its layout, so any content that extends beyond the edges of the frame remains visible. Use the corner
modifier to hide any content that extends beyond these edges while applying a corner radius.
The following code applies a corner radius of 20 to a square image:
Image("walnuts")
.cornerRadius(20)