Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Last active December 31, 2018 12:04
Show Gist options
  • Save Zfinix/1cf6f5405e495dccc2a51039ebeda8a3 to your computer and use it in GitHub Desktop.
Save Zfinix/1cf6f5405e495dccc2a51039ebeda8a3 to your computer and use it in GitHub Desktop.
///More code above
//Row for more weathr details (ROW 7)
Row(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.max,
children: <Widget>[
Column(
children: <Widget>[
SizedBox(height: 54),
line,
SizedBox(height: 20),
Row(
children: <Widget>[
Container(
margin: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Text("Wind",
style: TextStyle(
fontSize: 9,
color: Colors.white,
)),
SizedBox(height: 12),
Text(11,
style: TextStyle(
fontSize: 22,
color: Colors.white,
)),
SizedBox(height: 10),
Text("km/h",
style: TextStyle(
fontSize: 12,
color: Colors.white,
)),
SizedBox(height: 7),
SizedBox(
height: 2,
width: 80,
child: wind,
),
],
),
),
Container(
margin: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Text("Pressure",
style: TextStyle(
fontSize: 9,
color: Colors.white,
)),
SizedBox(height: 12),
Text("1123",
style: TextStyle(
fontSize: 22,
color: Colors.white,
)),
SizedBox(height: 10),
Text("kPa",
style: TextStyle(
fontSize: 12,
color: Colors.white,
)),
SizedBox(height: 7),
SizedBox(
height: 2,
width: 80,
child: pressurec,
),
],
),
),
Container(
margin: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Text("Humidity",
style: TextStyle(
fontSize: 9,
color: Colors.white,
)),
SizedBox(height: 12),
Text("90",
style: TextStyle(
fontSize: 22,
color: Colors.white,
)),
SizedBox(height: 10),
Text("%",
style: TextStyle(
fontSize: 12,
color: Colors.white,
)),
SizedBox(height: 7),
SizedBox(
height: 2,
width: 80,
child: humidityc,
),
],
),
),
],
),
],
),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment