Last active
July 12, 2020 21:28
-
-
Save apatronl/945824ef2671f9646c06a8c2d47ec1c7 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 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