Build: Simple Home Screen
Build a basic Flutter app screen using MaterialApp and Scaffold. The screen should have a top app bar with a title and a centered text message in the body.
Target UI
┌─────────────────────────────┐ │ App Bar Title │ ├─────────────────────────────┤ │ │ │ Welcome to Flutter! │ │ │ └─────────────────────────────┘
Use MaterialApp as the root widget
Use Scaffold inside MaterialApp
Add an AppBar with the title 'App Bar Title'
Center the text 'Welcome to Flutter!' in the body