Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created June 24, 2026 10:13
Show Gist options
  • Select an option

  • Save jacobsapps/e4c839acd5fcc5508ad083bace203383 to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/e4c839acd5fcc5508ad083bace203383 to your computer and use it in GitHub Desktop.
ContentView from My top 3 design “Kisses” I like to add to every app
var body: some View {
ScrollView {
// ...
}
.overlay(alignment: .top) {
Text("Design Kisses")
.font(.system(.headline, design: .rounded))
.frame(maxWidth: .infinity)
.padding(.vertical, 12)
.background {
Rectangle()
.fill(.ultraThinMaterial)
.padding(.bottom, -12)
.ignoresSafeArea(edges: .top)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment