Build: Counter Screen
A simple screen that shows a number and a button to increase it. The number is stored in an observable object using @StateObject to keep the state.
Target UI
------------------- | Counter: 0 | | | | [ Increase ] | -------------------
Create an observable class with a published integer property called count.
Use @StateObject in the view to create and observe the observable object.
Display the current count in a Text view.
Add a button labeled 'Increase' that increments the count when tapped.