popover(isPresented:attachmentAnchor:arrowEdge:content:)
Presents a popover when a given condition is true.
Declaration
nonisolated func popover<Content>(isPresented: Binding<Bool>, attachmentAnchor: PopoverAttachmentAnchor = .rect(.bounds), arrowEdge: Edge? = nil, @ViewBuilder content: @escaping () -> Content) -> some View where Content : View
Parameters
- isPresented:
A binding to a Boolean value that determines whether to present the popover content that you return from the modifier’s
contentclosure. - attachmentAnchor:
The positioning anchor that defines the attachment point of the popover. The default is Bounds.
- arrowEdge:
The edge of the
attachmentAnchorthat defines the location of the popover’s arrow. The default isnil, which results in the system allowing any arrow edge. - content:
A closure returning the content of the popover.
Discussion
Use this method to show a popover with contents that are a SwiftUI view, which you provide when a bound Boolean variable is true. In the example below, a popover displays whenever the user toggles the isShowingPopover state variable by pressing the “Show Popover” button:
struct PopoverExample: View {
@State private var isShowingPopover = false
var body: some View {
Button("Show Popover") {
self.isShowingPopover = true
}
.popover(isPresented: $isShowingPopover) {
Text("Popover Content")
.padding()
}
}
}[Image]
On iPhone, popovers adapt into sheets. In vertically compact environments, such as iPhone in landscape orientation, a popover presentation automatically adapts to appear as a full-screen cover. Use the presentationCompactAdaptation(_:) or presentationCompactAdaptation(horizontal:vertical:) modifier to override this behavior.
Breakthrough effect
In visionOS, most system presentations appear with a breakthrough effect by default. To change how the enclosing presentation breaks through content occluding it, use presentationBreakthroughEffect(_:), like in the following example:
.popover(isPresented: $isShowingPopover) {
Text("Popover Content")
.padding()
.presentationBreakthroughEffect(.prominent)
}