Item Alert
Presents an alert using the given data to produce the alert’s content and a text view as a title.
Platform Compatibility
iOS 27.0+ iPadOS 27.0+ macOS 27.0+ watchOS 27.0+ tvOS 27.0+ visionOS 27.0+
Tags
SwiftUI Code
struct Item {}
@State var item: Item? = .init()
var body: some View {
Text("Foo")
.alert("Title", item: $item) { alertItem in
Button("Ok") {
print("Item nilled")
}
}
}Found an issue or have a suggestion?
Created: June 9, 2026Updated: June 9, 2026