Created
October 19, 2020 19:52
-
-
Save mitnick78/d4599c27c761f4fd0f274792d72244f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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