Skip to content

Instantly share code, notes, and snippets.

@babuaditya97
Created May 23, 2023 21:59
Show Gist options
  • Save babuaditya97/7c89bfe1a7207a590903ff76259e642b to your computer and use it in GitHub Desktop.
Save babuaditya97/7c89bfe1a7207a590903ff76259e642b to your computer and use it in GitHub Desktop.
LEARN2
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