Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active July 12, 2020 21:28
Show Gist options
  • Save apatronl/945824ef2671f9646c06a8c2d47ec1c7 to your computer and use it in GitHub Desktop.
Save apatronl/945824ef2671f9646c06a8c2d47ec1c7 to your computer and use it in GitHub Desktop.
struct EmojibookListView: View {
// ...
}
struct EmojiItemView: View {
let emoji: String
let emojiName: String
var body: some View {
Text("\(emoji) \(emojiName)")
.font(.largeTitle)
.padding([.top, .bottom])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment