swiftui-presentation-api
Installation
SKILL.md
Presentation Modifiers API Reference
Lifecycle Position
Phase 3 API Reference — load during implementation when presenting sheets, alerts, popovers, or inspectors. Dispatched from autonomous-ui-workflow Phase 2 research table.
Sheet / Cover / Popover
.sheet(isPresented: $show) { Content() }
.sheet(item: $item) { item in Detail(item: item) }
.fullScreenCover(isPresented: $show) { Content() }
.popover(isPresented: $show, arrowEdge: .top) { Content() }