Skip to content

Instantly share code, notes, and snippets.

@rrifafauzikomara
Created December 14, 2019 16:14
Show Gist options
  • Save rrifafauzikomara/35f7c9ba9ed0776d53e663c662b64bee to your computer and use it in GitHub Desktop.
Save rrifafauzikomara/35f7c9ba9ed0776d53e663c662b64bee to your computer and use it in GitHub Desktop.
// 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