Skip to content

Instantly share code, notes, and snippets.

@maheshj01
Last active January 23, 2022 17:11
Show Gist options
  • Save maheshj01/eb204ae9873afff71e9d22be8d936e03 to your computer and use it in GitHub Desktop.
Save maheshj01/eb204ae9873afff71e9d22be8d936e03 to your computer and use it in GitHub Desktop.
Flutter Basic "Hello World" Code (Medium blog post)
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