Build: Counter Screen
A simple screen with a number that increases each time you press a button. It uses @State to keep track of the number.
Target UI
------------------- | Counter App | ------------------- | | | 0 | | | | [ Increase ] | -------------------
Display a number starting at 0
Add a button labeled 'Increase'
When the button is tapped, the number increases by 1
Use @State property wrapper to store the number