Skip to content

RyanYANG52/flutter_cached_network_image

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cached network image

pub package Donate

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.

About

Download, cache and show images in a flutter app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 87.1%
  • Ruby 7.8%
  • Objective-C 3.4%
  • Java 1.7%