Build: Data Types Demo
This screen shows examples of different basic data types in Flutter: int, double, String, and bool. It displays their values and a simple message using these types.
Target UI
------------------------- | Data Types Demo | |-----------------------| | Integer value: 42 | | Double value: 3.14 | | String value: Hello! | | Boolean value: true | | | | [Show Message] | -------------------------
Display four Text widgets showing values of int, double, String, and bool variables.
Add a button labeled 'Show Message' at the bottom.
When the button is pressed, show a SnackBar with a message combining all values.