Skip to content

Instantly share code, notes, and snippets.

@hendrikswan
Created November 29, 2022 17:23
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/90210d09918fe9add4adeb8099f43e19 to your computer and use it in GitHub Desktop.
Save hendrikswan/90210d09918fe9add4adeb8099f43e19 to your computer and use it in GitHub Desktop.
keen-cliff-3427
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: Stack(
alignment: Alignment.center,
children: [
SingleChildScrollView(
child: Center(
child: Column(children: [
Container(
width: 300,
height: 300,
color: Colors.red,
),
Container(
width: 300,
height: 300,
color: Colors.white,
),
Container(
width: 300,
height: 300,
color: Colors.blue,
),
]),
),
),
CircularProgressIndicator(),
]),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Text(
'Hello, World!',
style: Theme.of(context).textTheme.headline4,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment