Skip to content

Instantly share code, notes, and snippets.

@laevandus
Last active August 30, 2020 00:59
Show Gist options
  • Save laevandus/666f09a3da2f2981719c3d88d3b72c9c to your computer and use it in GitHub Desktop.
Save laevandus/666f09a3da2f2981719c3d88d3b72c9c to your computer and use it in GitHub Desktop.
struct ContentView: View {
@ObservedObject var viewModel: ViewModel
var body: some View {
NavigationView {
VStack {
List(viewModel.colors, id: \.objectID) { (colorItem) in
Cell(colorItem: colorItem)
}
}.navigationBarTitle("Colors")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment