Last active
August 30, 2020 00:59
-
-
Save laevandus/666f09a3da2f2981719c3d88d3b72c9c 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 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