Created
January 28, 2024 20:05
-
-
Save jordansinger/2256da3daf4032ffddbce3965db8b5fb to your computer and use it in GitHub Desktop.
Revisions
-
jordansinger created this gist
Jan 28, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,151 @@ struct ContentView: View { var body: some View { VStack { HStack { Spacer() Button { } label: { Image(systemName: "power") .resizable() .aspectRatio(contentMode: .fill) .padding() } .frame(width: 56, height: 56) .glassBackgroundEffect(in: .circle) } ZStack { Button { } label: { Circle() .fill(.clear) } .glassBackgroundEffect(in: .circle) // .buttonStyle(.plain) Button { } label: { Circle() .fill(.clear) } .glassBackgroundEffect(in: .circle) .frame(width: 144, height: 144) // .buttonStyle(.plain) HStack { Spacer() VStack { Image(systemName: "circle.fill") .scaleEffect(0.5) Spacer() Image(systemName: "circle.fill") .scaleEffect(0.5) } Spacer() } .padding() .padding() VStack { Spacer() HStack { Image(systemName: "circle.fill") .scaleEffect(0.5) Spacer() Image(systemName: "circle.fill") .scaleEffect(0.5) } Spacer() } .padding() .padding() } .frame(width: 256, height: 256) VStack(spacing: 24) { HStack { Button { } label: { Image(systemName: "chevron.left") .resizable() .aspectRatio(contentMode: .fill) .padding(36) } .frame(width: 96, height: 96) .glassBackgroundEffect(in: .circle) Spacer() Button { } label: { Image(systemName: "tv") .resizable() .aspectRatio(contentMode: .fill) .foregroundStyle(.white, .clear) .padding(36) } .frame(width: 96, height: 96) .glassBackgroundEffect(in: .circle) } HStack { VStack { Button { } label: { Image(systemName: "playpause") .resizable() .aspectRatio(contentMode: .fill) .padding(38) } .frame(width: 96, height: 96) .glassBackgroundEffect(in: .circle) Spacer() Button { } label: { Image(systemName: "speaker.slash") .resizable() .aspectRatio(contentMode: .fill) .padding(32) } .frame(width: 96, height: 96) .glassBackgroundEffect(in: .circle) } Spacer() Button { } label: { VStack { Image(systemName: "plus") .resizable() .aspectRatio(contentMode: .fit) .padding(36) .frame(width: 96, height: 96) Spacer() Image(systemName: "minus") .resizable() .aspectRatio(contentMode: .fit) .padding(36) .frame(width: 96, height: 96) } } .frame(width: 96, height: 212) .glassBackgroundEffect(in: .capsule) } .frame(height: 212) } .padding(.horizontal) Spacer() } .padding() .frame(width: 256, height: 880) .glassBackgroundEffect() .persistentSystemOverlays(.hidden) .ornament(attachmentAnchor: .scene(.bottom)) { Button { } label: { Image(systemName: "mic") .resizable() .aspectRatio(contentMode: .fill) .padding() } .frame(width: 64, height: 64) .glassBackgroundEffect(in: .circle) } } }