var body: some View {
List(sandwiches) { sandwich in
Image(sandwich.thumbnailName)
VStack(alignment: .leading) {
Text(.sandwich.name)
Text("\(sandwich.ingredientCount) ingredients")
.font(.subheadline)
.foregroundColor(.secondary)
}
List is where error is, how do I get rid of it
List(sandwiches) { sandwich in
Image(sandwich.thumbnailName)
VStack(alignment: .leading) {
Text(.sandwich.name)
Text("\(sandwich.ingredientCount) ingredients")
.font(.subheadline)
.foregroundColor(.secondary)
}
List is where error is, how do I get rid of it