Skip to content

Instantly share code, notes, and snippets.

@ziajek444
Created August 6, 2023 16:03
Show Gist options
  • Save ziajek444/8ca3d1a9486effc9c0175a43c9e2e242 to your computer and use it in GitHub Desktop.
Save ziajek444/8ca3d1a9486effc9c0175a43c9e2e242 to your computer and use it in GitHub Desktop.
crimson-fauna-6147
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.headlineMedium,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment