Build: Counter Screen
A simple screen that shows a number and a button to increase it. The number updates automatically using @ObservedObject to watch changes.
Target UI
------------------- | Counter: 0 | | | | [ Increase ] | -------------------
Create a class CounterModel that holds an integer count and can increase it.
Use @Published in CounterModel to notify changes.
Create a SwiftUI view that uses @ObservedObject to watch CounterModel.
Display the current count in a Text view.
Add a Button labeled 'Increase' that calls the increase method in CounterModel.