Build: Simple Info Screen
This screen shows a greeting message and a number. It uses variables and constants with type inference.
Target UI
------------------------- | Simple Info Screen | |-----------------------| | Greeting: Hello, User! | | Number: 42 | | | | [Change Number Button] | -------------------------
Use let to declare a constant greeting message with type inference.
Use var to declare a variable number with type inference.
Display the greeting and number on the screen.
Add a button labeled 'Change Number' that changes the number variable to a new value when tapped and updates the display.