# flutter_cached_network_image **Repository Path**: inoya/flutter_cached_network_image ## Basic Information - **Project Name**: flutter_cached_network_image - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-02-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Cached network image [![pub package](https://img.shields.io/pub/v/cached_network_image.svg)](https://pub.dartlang.org/packages/cached_network_image) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/renefloor) A flutter library to show images from the internet and keep them in the cache directory. ## How to use The CachedNetworkImage can be used directly or through the ImageProvider. ``` new CachedNetworkImage( imageUrl: "http://via.placeholder.com/350x150", placeholder: new CircularProgressIndicator(), errorWidget: new Icon(Icons.error), ), ``` ```` new Image(image: new CachedNetworkImageProvider(url)) ```` ## How it works The cached network images stores and retrieves files using the [flutter_cache_manager](https://pub.dartlang.org/packages/flutter_cache_manager).