Last active
July 18, 2020 14:19
-
-
Save apatronl/75197cf3dd9ff18efb4edd01b37ddb26 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
// ... | |
struct MediumEmojiWidgetView: View { | |
let emojiDetails: EmojiDetails | |
var body: some View { | |
ZStack { | |
Color(UIColor.systemIndigo) | |
HStack { | |
Text(emojiDetails.emoji) | |
.font(.system(size: 56)) | |
.padding() | |
VStack(alignment: .leading) { | |
Text(emojiDetails.name) | |
.font(.headline) | |
Text(emojiDetails.description) | |
} | |
.foregroundColor(.white) | |
.padding([.top, .bottom, .trailing]) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment