Last active
June 7, 2019 08:35
-
-
Save timbergus/8d1672ed34c11bfc780ab34491320390 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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