# My First Code

This simple app displays the text “hello” on the screen. While it may not seem groundbreaking, it’s a crucial first step. With this, I’ve set up my environment, explored the structure of a Flutter app, and run my code successfully.

### Breaking It Down:

* `MaterialApp`: A starting point for any Flutter app that uses Material Design.
    
* `home`: Specifies the main screen of the app.
    
* `Text`: A widget used to display text.
