pcejas / flutter_cached_network_image

Download, cache and show images in a flutter app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cached network image

pub package Donate

A flutter library to show images from the internet and keep them in the cache directory.

How to add

Add this to your package's pubspec.yaml file:

dependencies:
  cached_network_image: "^0.4.1"

Add it to your dart file:

import 'package:cached_network_image/cached_network_image.dart';

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

License:MIT License


Languages

Language:Dart 86.8%Language:Ruby 8.0%Language:Objective-C 3.5%Language:Java 1.7%