Created
June 7, 2019 10:53
-
-
Save timbergus/521979cb073108fa4dfd3dd717fce1f2 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
Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.spaceAround, | |
children: <Widget>[ | |
Text( | |
'$_locality', | |
style: TextStyle( | |
fontFamily: 'Indie Flower', | |
fontSize: 50, | |
), | |
), | |
Text( | |
'${_temperature.toStringAsFixed(2)}ºC', | |
style: TextStyle( | |
fontFamily: 'Kumar One Outline', | |
fontSize: 50, | |
), | |
), | |
Container( | |
width: 300, | |
height: 300, | |
color: Colors.green, | |
), | |
Text( | |
'$_description', | |
style: TextStyle( | |
fontFamily: 'Indie Flower', | |
fontSize: 50, | |
), | |
), | |
], | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment