Created
January 24, 2019 06:22
-
-
Save trey-rosius/646c1db8368eaf5a5306ea7ecd121e71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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