cached_network_image 0.6.0 copy "cached_network_image: ^0.6.0" to clipboard
cached_network_image: ^0.6.0 copied to clipboard

outdated

Flutter library to load and cache network images. Can also be used with placeholder and error widgets.

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: (context, url) => new CircularProgressIndicator(),
        errorWidget: (context, url, error) => 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.

5647
likes
0
pub points
100%
popularity

Publisher

verified publisherbaseflow.com

Flutter library to load and cache network images. Can also be used with placeholder and error widgets.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_cache_manager

More

Packages that depend on cached_network_image