Build: Counter Screen
A simple screen that shows a number and a button. When the button is pressed, the number increases by one using setState to update the UI.
Target UI
------------------- | Counter: 0 | | | | [ Increment ] | -------------------
Display a number starting at 0
Add a button labeled 'Increment'
When the button is pressed, increase the number by 1
Use setState to update the displayed number