Sheet Corner Radius
Requests that the presentation have a specific corner radius.
Platform Compatibility
iOS 16.4+ iPadOS 16.4+ macOS 13.3+ watchOS 9.4+ tvOS 16.4+ visionOS 1.0+
Tags
SwiftUI Code
@State var showSheet = true
var body: some View {
Text("Foo")
.sheet(isPresented: $showSheet) {
sheetContent
.presentationCornerRadius(84)
}
}Found an issue or have a suggestion?
Created: January 31, 2026Updated: January 31, 2026