
Sheet Header
From syxUI — written for both platforms, not translated between them.
A sheet header - grabber, title and close button.
Cards · SwiftUI · iOS 17
- cards
- swiftui
The actual source
SheetHeader.swift
// Sheet Header · syxUI · https://syxui.dev/components/sheet-header
// Free in any project. Keep this line and credit syxUI where a person can read it.
import SwiftUI
func shCard<C: View>(_ w: CGFloat, radius: CGFloat = 18, @ViewBuilder _ c: () -> C) -> some View {
c().frame(width: w).background(Color(.systemBackground), in: RoundedRectangle(cornerRadius: radius, style: .continuous)).overlay(RoundedRectangle(cornerRadius: radius, style: .continuous).stroke(Color.primary.opacity(0.07), lineWidth: 1)).shadow(color: .black.opacity(0.05), radius: 12, y: 5)
}
// Sheet header (grabber + title + close)
struct SheetHeader: View {
var body: some View {
shCard(330, radius: 22) {
VStack(spacing: 12) {
Capsule().fill(Color.primary.opacity(0.2)).frame(width: 36, height: 5)
HStack { Text("Filters").font(.system(size: 18, weight: .bold)); Spacer(); Image(systemName: "xmark").font(.system(size: 13, weight: .bold)).foregroundStyle(.secondary).padding(8).background(Color.primary.opacity(0.06), in: Circle()) }
Divider()
}.padding(.horizontal, 18).padding(.top, 10)
}
}
}
iOS 17 · No dependencies
Dependencies
- SwiftUI
- No external dependencies
Requires iOS 17


