Skip to content

Instantly share code, notes, and snippets.

@MaskyS
Created June 1, 2020 08:42
Show Gist options
  • Save MaskyS/54c26ddbd57f0fbd5dca0dffd9ad718f to your computer and use it in GitHub Desktop.
Save MaskyS/54c26ddbd57f0fbd5dca0dffd9ad718f 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(
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Column(
children: <Widget>[
Expanded(
child: ListView(
padding: EdgeInsets.symmetric(horizontal: 15, vertical: 30),
children: <Widget>[
MyWidget(),
Container(
width: 200,
child: Column(
children: <Widget>[
TextField(),
TextField(),
],
),
),
],
),
),
],
),
),
);
}
}
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