Sheet Placement
Sets the placement of a presentation within the presenting view. This may fall back to center on small screens.
Platform Compatibility
iOS 27.0+ iPadOS 27.0+ macOS 27.0+ watchOS 27.0+ tvOS 27.0+ visionOS 27.0+
Tags
SwiftUI Code
@State var showSheet = true
var body: some View {
Text("Foo")
.sheet(isPresented: $showSheet) {
sheetContent
.presentationPlacement(.leading)
}
}Found an issue or have a suggestion?
Created: August 11, 2026Updated: August 11, 2026