Posts

Post not yet marked as solved
0 Replies
319 Views
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
Posted
by dononyx.
Last updated
.