Skip to content

Instantly share code, notes, and snippets.

@munificent
Created March 14, 2019 22:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save munificent/c81661aee0a9c74e2dc5c059048ccd72 to your computer and use it in GitHub Desktop.
Save munificent/c81661aee0a9c74e2dc5c059048ccd72 to your computer and use it in GitHub Desktop.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(title: Text('Welcome to Flutter')),
body: Column(
children: [
Text('Hello World'),
Text('This is Flutter'),
Text('Written in Dart')
]
)
)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment