Skip to content

Instantly share code, notes, and snippets.

@RedBrogdon
Forked from johnpryan/hello_world.dart
Last active November 19, 2019 18:48
Show Gist options
  • Save RedBrogdon/698639ac24feab2f89c32e68adc412b2 to your computer and use it in GitHub Desktop.
Save RedBrogdon/698639ac24feab2f89c32e68adc412b2 to your computer and use it in GitHub Desktop.
flutter hello world
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(),
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Text(
'Hello, World!',
style: Theme.of(context).textTheme.display1,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment