Skip to content

Instantly share code, notes, and snippets.

@kmkkkp
Created July 21, 2023 06:26
Show Gist options
  • Save kmkkkp/bbb808f7094d72b9d7859f4be76df601 to your computer and use it in GitHub Desktop.
Save kmkkkp/bbb808f7094d72b9d7859f4be76df601 to your computer and use it in GitHub Desktop.
Head
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