Build: Variable Demo Screen
This screen shows how to declare variables with and without type inference in Flutter. It displays two texts: one showing a variable declared with explicit type and another with inferred type.
Target UI
------------------------- | Variable Demo Screen | |-----------------------| | Explicit type: 42 | | Inferred type: Hello | | | |-----------------------|
Display a Scaffold with an AppBar titled 'Variable Demo Screen'.
Show two Text widgets in a Column centered vertically and horizontally.
First Text shows an integer variable declared with explicit type.
Second Text shows a string variable declared with type inference (var).