Skip to content

Instantly share code, notes, and snippets.

@timbergus
Created June 7, 2019 10:53
Show Gist options
  • Save timbergus/521979cb073108fa4dfd3dd717fce1f2 to your computer and use it in GitHub Desktop.
Save timbergus/521979cb073108fa4dfd3dd717fce1f2 to your computer and use it in GitHub Desktop.
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