Skip to content

Instantly share code, notes, and snippets.

@dllewellyn
Created November 20, 2019 08:05
Show Gist options
  • Save dllewellyn/bcf2e96150f080150f5618015dc35226 to your computer and use it in GitHub Desktop.
Save dllewellyn/bcf2e96150f080150f5618015dc35226 to your computer and use it in GitHub Desktop.
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.red,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Text("Hello world")
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment