Skip to content

Instantly share code, notes, and snippets.

@karthironald
Created June 12, 2020 16:38
Show Gist options
  • Save karthironald/451d1cfd482739b128e02d098b2b86e5 to your computer and use it in GitHub Desktop.
Save karthironald/451d1cfd482739b128e02d098b2b86e5 to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
var cornerRadius: CGFloat = 20
var body: some View {
VStack {
RoundedRectangle(cornerRadius: cornerRadius)
.fill(Color("kMainBg"))
.frame(width: 150, height: 150)
.shadow(color: Color("kDarkShadow"), radius: 5, x: -10, y: -10)
.shadow(color: Color("kLightShadow"), radius: 5, x: 10, y: 10)
.overlay(
Image(systemName: "1.circle.fill")
.resizable()
.frame(width: 40, height: 40)
.aspectRatio(contentMode: .fit)
.foregroundColor(.pink)
)
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Color("kMainBg"))
.edgesIgnoringSafeArea(.all)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment