Created
December 14, 2019 16:14
-
-
Save rrifafauzikomara/35f7c9ba9ed0776d53e663c662b64bee 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
// header | |
Container( | |
child: Row( | |
mainAxisSize: MainAxisSize.max, | |
crossAxisAlignment: CrossAxisAlignment.start, | |
mainAxisAlignment: MainAxisAlignment.start, | |
children: <Widget>[ | |
// circle vote average | |
Container(), | |
SizedBox( | |
width: 10, | |
), | |
// title and release date | |
Flexible( | |
child: Column( | |
mainAxisSize: MainAxisSize.max, | |
crossAxisAlignment: CrossAxisAlignment.start, | |
children: <Widget>[ | |
Text( | |
title, | |
overflow: TextOverflow.ellipsis, | |
style: TextStyle( | |
fontWeight: FontWeight.w600, | |
fontSize: 20), | |
), | |
Text( | |
releaseDate, | |
style: TextStyle( | |
color: Colors.grey[800], | |
fontSize: 14), | |
) | |
], | |
), | |
) | |
], | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment