Skip to content

Instantly share code, notes, and snippets.

@slamdon
Created February 23, 2020 11:39
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/43aadbfe3dc4f7beaaf35b2e8a3a5c2f to your computer and use it in GitHub Desktop.
Save slamdon/43aadbfe3dc4f7beaaf35b2e8a3a5c2f to your computer and use it in GitHub Desktop.
ImageContainer
Widget _buildImageContainer(BuildContext context) {
return ClipRRect(
child: SizedBox(
child: Image.asset(
this.product.imagePath,
fit: BoxFit.cover,
),
),
borderRadius: BorderRadius.circular(10),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment