Skip to content

Instantly share code, notes, and snippets.

@jesusrp98
Created January 10, 2019 12:14
Show Gist options
  • Save jesusrp98/e7e69837eca0506471654956db88d02e to your computer and use it in GitHub Desktop.
Save jesusrp98/e7e69837eca0506471654956db88d02e to your computer and use it in GitHub Desktop.
Auxiliary widget to display a cached image. It has its own 'error' widget.
return CachedNetworkImage(
imageUrl: url,
errorWidget: Icon(
Icons.cancel,
size: 32.0,
color: Theme.of(context).textTheme.caption.color,
),
fadeInDuration: Duration(milliseconds: 100),
fit: BoxFit.cover,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment