Item Sheet

Presents a sheet using the given item as a data source for the sheet’s content. On watchOS, sheets are displayed as fullScreenCover.

Item Sheet - iOS Liquid Glass Light Mode Preview

Platform Compatibility

iOS 13.0+ iPadOS 13.0+ macOS 10.15+ watchOS 6.0+ tvOS 13.0+ visionOS 1.0+

Tags

SwiftUI Code

Docs
struct IdentifableItem: Identifiable {
    let id = UUID()
}

@State var item: IdentifableItem? = .init()

var body: some View {
    Text("Foo")
        .sheet(item: $item) { itm in
            sheetContent(item)
        }
}

Found an issue or have a suggestion?

Created: January 31, 2026Updated: January 31, 2026