Skip to content

Instantly share code, notes, and snippets.

@timbergus
Last active June 7, 2019 08:35
Show Gist options
  • Save timbergus/8d1672ed34c11bfc780ab34491320390 to your computer and use it in GitHub Desktop.
Save timbergus/8d1672ed34c11bfc780ab34491320390 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('My Weather App'),
),
body: SafeArea(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
Container(
width: 300,
height: 50,
color: Colors.black,
),
Container(
width: 300,
height: 50,
color: Colors.red,
),
Container(
width: 300,
height: 50,
color: Colors.green,
),
Container(
width: 300,
height: 50,
color: Colors.blue,
),
],
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment