Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active July 11, 2020 23:59
Show Gist options
  • Save apatronl/0fa4a29e409e99f75c8e492966c037e3 to your computer and use it in GitHub Desktop.
Save apatronl/0fa4a29e409e99f75c8e492966c037e3 to your computer and use it in GitHub Desktop.
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