Skip to content

Instantly share code, notes, and snippets.

@trey-rosius
Created January 24, 2019 06:51
Show Gist options
  • Select an option

  • Save trey-rosius/fee882be168c27037edb2aff6a06fbbe to your computer and use it in GitHub Desktop.

Select an option

Save trey-rosius/fee882be168c27037edb2aff6a06fbbe to your computer and use it in GitHub Desktop.
Padding(
padding: const EdgeInsets.only(top: 20.0, bottom: 10.0),
child: Container(
height: size.height / 8,
width: size.width / 1.1,
decoration: BoxDecoration(
color: Color(0xFF212129),
borderRadius: BorderRadius.all(Radius.circular(20.0))),
child: Row(
children: <Widget>[
Image.asset(
'images/location.png',
color: Colors.white,
),
Padding(
padding: const EdgeInsets.only(left: 12.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
"DELIVERY",
style: TextStyle(
color: Colors.white, fontSize: 20.0),
),
Text(
"D45 Amerlands",
style: TextStyle(
color: Colors.white, fontSize: 14.0),
),
Text(
"mr Hammer Road London",
style: TextStyle(
color: Colors.white, fontSize: 14.0),
)
],
),
)
],
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment