Skip to content

Instantly share code, notes, and snippets.

@navsing
Created January 6, 2023 19:07
Show Gist options
  • Save navsing/55660eacfe585d860a6708b55a8090fe to your computer and use it in GitHub Desktop.
Save navsing/55660eacfe585d860a6708b55a8090fe to your computer and use it in GitHub Desktop.
Button(action: {}) {
Circle()
.fill(Color("bg"))
.frame(width: 96, height: 96)
.shadow(color: Color("dark"), radius: 5, x: -10, y: -10)
.shadow(color: Color("light"), radius: 5, x: 10, y: 10)
.blur(radius: 5)
.overlay(
Image(systemName: "play.fill")
.resizable()
.frame(width: 32, height: 32)
.aspectRatio(contentMode: .fit)
.foregroundColor(.gray)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment