Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created July 11, 2020 16:14
Show Gist options
  • Save apatronl/269966bd007e8b33a648f70934eb7418 to your computer and use it in GitHub Desktop.
Save apatronl/269966bd007e8b33a648f70934eb7418 to your computer and use it in GitHub Desktop.
var body: some View {
NavigationView {
List {
ForEach(0..<10, content: { i in
Text("\(i): 🥳")
.font(.largeTitle)
.padding([.top, .bottom])
})
}
.foregroundColor(.black)
.listStyle(InsetGroupedListStyle())
.navigationBarTitle("Emojibook")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment