Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Last active December 31, 2018 11:54
Show Gist options
  • Save Zfinix/34d23f07dcd6175c430bf1849b6a784d to your computer and use it in GitHub Desktop.
Save Zfinix/34d23f07dcd6175c430bf1849b6a784d to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
///more code above
final humidityc = LinearProgressIndicator(
backgroundColor: Colors.white24,
value: 92,
);
/// Our Layout Build
return new Material(
type: MaterialType.transparency,
child: Stack(
new Container(
decoration: new BoxDecoration(
image: new DecorationImage(
image: new AssetImage('assets/weathercons/rain.png'),
fit: BoxFit.cover,
),
),
),
Container(
margin: EdgeInsets.all(0),
child: Padding(padding: const EdgeInsets.all(30.0),
child: Column(
children: <Widget>[
//More code In between for our seven rows
],
),
),
),
],
));/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment