Last active
July 11, 2020 23:59
-
-
Save apatronl/0fa4a29e409e99f75c8e492966c037e3 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 { | |
let emojiData: [EmojiDetails] = EmojiProvider.all() | |
var body: some View { | |
NavigationView { | |
List { | |
ForEach(emojiData, content: { emojiDetails in | |
EmojiItemView(emoji: emojiDetails.emoji, emojiName: emojiDetails.name) | |
}) | |
} | |
.foregroundColor(.black) | |
.listStyle(InsetGroupedListStyle()) | |
.navigationBarTitle("Emojibook") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment