Skip to content

Instantly share code, notes, and snippets.

@hendrikswan
Created November 29, 2022 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hendrikswan/5217c931212f9ae4e63c0a7dee76e12b to your computer and use it in GitHub Desktop.
Save hendrikswan/5217c931212f9ae4e63c0a7dee76e12b to your computer and use it in GitHub Desktop.
solar-cliff-5547
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: Column(children: [
Container(
height: 200,
width: 300,
color: Colors.blue,
),
Container(
height: 200,
width: 300,
color: Colors.white,
),
Container(
height: 200,
width: 300,
color: Colors.red,
),
])),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment