Created
June 24, 2026 10:13
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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