Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created August 7, 2020 22:35
Show Gist options
  • Save azamsharp/90086371016f83d0850762be0b2e63b5 to your computer and use it in GitHub Desktop.
Save azamsharp/90086371016f83d0850762be0b2e63b5 to your computer and use it in GitHub Desktop.
struct CreditCardFront: View {
let name: String
let expires: String
var body: some View {
VStack(alignment: .leading) {
... code to create the form
}.frame(width: 300, height: 200)
.padding()
.background(LinearGradient(gradient: Gradient(colors: [Color(#colorLiteral(red: 0.5481430292, green: 0, blue: 0.4720868468, alpha: 1)), Color.blue]), startPoint: .topLeading, endPoint: .bottomTrailing))
.cornerRadius(10)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment