Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active July 18, 2020 14:50
Show Gist options
  • Save apatronl/0fbea6955051ec760c4f83c8320df1f6 to your computer and use it in GitHub Desktop.
Save apatronl/0fbea6955051ec760c4f83c8320df1f6 to your computer and use it in GitHub Desktop.
// ...
struct SmallEmojiWidgetView: View {
let emojiDetails: EmojiDetails
var body: some View {
ZStack {
Color(UIColor.systemIndigo)
VStack {
Text(emojiDetails.emoji)
.font(.system(size: 56))
Text(emojiDetails.name)
.font(.headline)
.multilineTextAlignment(.center)
.padding(.top, 5)
.padding([.leading, .trailing])
.foregroundColor(.white)
}
}
}
}
struct MediumEmojiWidgetView: View {
// ...
}
struct LargeEmojiWidgetView: View {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment