Skip to content

Instantly share code, notes, and snippets.

@mitnick78
Created October 19, 2020 19:52
Show Gist options
  • Save mitnick78/d4599c27c761f4fd0f274792d72244f9 to your computer and use it in GitHub Desktop.
Save mitnick78/d4599c27c761f4fd0f274792d72244f9 to your computer and use it in GitHub Desktop.
import SwiftUI
struct CardView: View {
var item: ActivityModel
var body: some View {
VStack {
URLImage(url: item.image)
Text(item.heading)
.font(Font.system(size: 20))
.foregroundColor(.black)
.padding(.bottom, 25)
}
.background(Color.white)
.cornerRadius(10)
.shadow(radius: 4.0)
.padding(.bottom, 20)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment