SwiftUI Bind to @ObservableObject in array – Ios swift
How do I pass a bindable object into a view inside a ForEach loop? Minimum reproducible code below. class Person: Identifiable, ObservableObject { let id: UUID = UUID() @Published var healthy: Bool = true } class GroupOfPeople { let people:…