Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save trey-rosius/646c1db8368eaf5a5306ea7ecd121e71 to your computer and use it in GitHub Desktop.
Row(
children: <Widget>[
Image.asset('images/cake.png'),
Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Icon(
Icons.add,
color: Colors.white,
),
Container(
padding: EdgeInsets.all(15.0),
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
shape: BoxShape.circle),
child: Text(
"1",
style: TextStyle(color: Colors.white),
)),
Icon(
Icons.remove,
color: Colors.white,
),
],
)
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment