Skip to content

Instantly share code, notes, and snippets.

@johnpryan
Last active November 19, 2019 18:46
Show Gist options
  • Save johnpryan/67acac89cb32605b61dea6f26adb5dc9 to your computer and use it in GitHub Desktop.
Save johnpryan/67acac89cb32605b61dea6f26adb5dc9 to your computer and use it in GitHub Desktop.
flutter hello world
import 'package:flutter_web/material.dart';
import 'package:flutter_web_test/flutter_web_test.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
Future main() async {
await ui.webOnlyInitializePlatform();
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