Skip to content

Instantly share code, notes, and snippets.

@ha-yi
Created June 9, 2020 03:41
Show Gist options
  • Save ha-yi/2c18b0f9989c94abefe0b9369d5207f6 to your computer and use it in GitHub Desktop.
Save ha-yi/2c18b0f9989c94abefe0b9369d5207f6 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: Text(
'Hello, World!',
style: Theme.of(context).textTheme.headline2,
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment