Skip to content

Instantly share code, notes, and snippets.

@slamdon
Created February 23, 2020 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slamdon/d2364822bc64b45e418982466d39fe9a to your computer and use it in GitHub Desktop.
Save slamdon/d2364822bc64b45e418982466d39fe9a to your computer and use it in GitHub Desktop.
Product Description
Widget _buildInformationMiddleContainer(BuildContext context) {
return Padding(
padding: EdgeInsets.fromLTRB(0, 4, 0, 4),
child: Text(
this.product.description,
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: TextStyle(color: Colors.grey, fontSize: 12),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment