Skip to content

Instantly share code, notes, and snippets.

@johnpryan
Created June 29, 2022 21:27
Show Gist options
  • Save johnpryan/49547a373afcdc9ca3ff95d77437e60a to your computer and use it in GitHub Desktop.
Save johnpryan/49547a373afcdc9ca3ff95d77437e60a to your computer and use it in GitHub Desktop.
wild-snow-4456
/// This is a test of the new GitHub integration feature.
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Text(
'Hello, World!',
style: Theme.of(context).textTheme.headline4,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment