Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created July 18, 2020 14:32
Show Gist options
  • Save apatronl/bf1c725f2e51462fae8d6de9d4808e12 to your computer and use it in GitHub Desktop.
Save apatronl/bf1c725f2e51462fae8d6de9d4808e12 to your computer and use it in GitHub Desktop.
// ...
struct MediumEmojiWidgetView: View {
// ...
}
struct LargeEmojiWidgetView: View {
let emojiDetails: EmojiDetails
var body: some View {
ZStack {
Color(UIColor.systemIndigo)
VStack {
Text(emojiDetails.name)
.bold()
.font(.title)
Text(emojiDetails.emoji)
.font(.system(size: 60))
.padding()
Text(emojiDetails.description)
.font(.title3)
}
.foregroundColor(.white)
.multilineTextAlignment(.center)
.padding()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment