Skip to content

Instantly share code, notes, and snippets.

@rrifafauzikomara
Last active December 14, 2019 16:23
Show Gist options
  • Save rrifafauzikomara/8d16bf768fde160503f3326d1e1c6b6a to your computer and use it in GitHub Desktop.
Save rrifafauzikomara/8d16bf768fde160503f3326d1e1c6b6a to your computer and use it in GitHub Desktop.
// content
Container(
width: 260,
padding: EdgeInsets.all(10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
// header
Container(),
SizedBox(
height: 10,
),
// genre
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children:
genre,
),
),
SizedBox(
height: 10,
),
// description
Container(
width: 360,
child: Text(
overview,
softWrap: true,
maxLines: 6,
overflow: TextOverflow.ellipsis,
),
),
],
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment