to achieve one-way data binding with Swi6UI in situa9ons like below? import Combine final class Counter: ObservableObject { @Published private(set) var count: Int = 0 func increment() { count += 1 } func reset() { count = 0 } } ... 7 h$ps:/ /forums.swi1.org/t/one-way-data-binding-from-observedobject-with-swi1ui/37547