Created
January 24, 2019 06:58
-
-
Save trey-rosius/8ec1a47e7f8a5c8b4cdf350f57fb3d83 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
| Container( | |
| padding: EdgeInsets.only(top: 10.0, bottom: 10.0), | |
| width: size.width / 1.1, | |
| child: Row( | |
| children: <Widget>[ | |
| Expanded( | |
| child: Text( | |
| 'Ratings', | |
| style: TextStyle(color: Colors.white), | |
| )), | |
| Padding( | |
| padding: const EdgeInsets.only(right: 30.0), | |
| child: Row( | |
| children: <Widget>[ | |
| Icon( | |
| Icons.star, | |
| color: Theme.of(context).accentColor, | |
| ), | |
| Icon( | |
| Icons.star, | |
| color: Theme.of(context).accentColor, | |
| ), | |
| Icon( | |
| Icons.star, | |
| color: Theme.of(context).accentColor, | |
| ), | |
| Icon( | |
| Icons.star, | |
| color: Theme.of(context).accentColor, | |
| ), | |
| Icon( | |
| Icons.star, | |
| color: Theme.of(context).accentColor, | |
| ), | |
| ], | |
| ), | |
| ), | |
| Padding( | |
| padding: const EdgeInsets.only(right: 50.0), | |
| child: Text( | |
| "(55)", | |
| style: TextStyle(color: Colors.white), | |
| ), | |
| ) | |
| ], | |
| ), | |
| ), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment