Last active
January 23, 2022 17:11
-
-
Save maheshj01/eb204ae9873afff71e9d22be8d936e03 to your computer and use it in GitHub Desktop.
Flutter Basic "Hello World" Code (Medium blog post)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scaffold( | |
body: Container( | |
color: Colors.blueGrey, | |
child: Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
Text("Hello World") | |
], | |
), | |
), | |
), | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment