Skip to content

Instantly share code, notes, and snippets.

@BLCKBIRDS
Last active August 9, 2019 09:33
Show Gist options
  • Save BLCKBIRDS/7b12bc1abe51e7e8652451a0a4028cde to your computer and use it in GitHub Desktop.
Save BLCKBIRDS/7b12bc1abe51e7e8652451a0a4028cde to your computer and use it in GitHub Desktop.
struct ContentView : View {
var body: some View {
HStack {
Text("ADD TO CART")
.font(.custom("Avenir-Medium", size: 20))
.foregroundColor(.black)
Image(systemName: "cart")
.foregroundColor(.black)
}
.frame(width: 220, height: 30)
.padding()
.background(Color.green)
.cornerRadius(10.0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment