fast_cached_network_image

Creator: coderz1093

Last updated:

Add to Cart

Description:

fast cached network image

Fast Cached Network Image #
A flutter package to cache network image fastly without native dependencies, with loader, error builder, and smooth fade transitions.
You can also add beautiful loaders and percentage indicators with the total and download size of the image.



Screenshots #




Use shimmer package to create a beautiful loading widget.
Usage #
Import it
import 'package:fast_cached_network_image/fast_cached_network_image.dart';
copied to clipboard
Use path_provider to set a storage location for the db of images.
String storageLocation = (await getApplicationDocumentsDirectory()).path;
copied to clipboard

This package uses Hive as cache container, which uses getApplicationDocumentsDirectory() to get the default path in case subDir is not specified

Initialize the cache configuration
await FastCachedImageConfig.init(subDir: storageLocation, clearCacheAfter: const Duration(days: 15));
copied to clipboard
The clearCacheAfter property is used to set the Duration after with the cached image will be cleared. By default its set to 7 days, which means an image cached today will be deleted when you open the app after 7 days.
Use it as a Widget
child: FastCachedImage(url: url)
copied to clipboard
Properties #
errorBuilder: (context, exception, stacktrace) {
return Text(stacktrace.toString());
},
copied to clipboard
errorBuilder property needs to return a widget. This widget will be displayed if there is any error while loading the provided image.

loadingBuilder: (context, progress) {
return Container(
color: Colors.yellow,
child: Stack(
alignment: Alignment.center,
children: [
if (progress.isDownloading && progress.totalBytes != null)
Text('${progress.downloadedBytes ~/ 1024} / ${progress.totalBytes! ~/ 1024} kb',
style: const TextStyle(color: Colors.red)),
SizedBox(
width: 120,
height: 120,
child:
CircularProgressIndicator(color: Colors.red, value: progress.progressPercentage.value)),
],
),
);
},
copied to clipboard
loadingBuilder property can be used to display a loading widget such as a shimmer. This widget will be displayed while the image is being downloaded and processed.
loadingBuilder provides a progress property which can be used to display the image download progress with the size(in bytes) of the image.
fadeInDuration: const Duration(seconds: 1);
copied to clipboard
fadeInDuration property can be use to set the fadeInDuration between the loadingBuilder and the image. Default duration is 500 milliseconds
FastCachedImageConfig.isCached(imageUrl: url));
copied to clipboard
You can pass in a url to this method and check whether the image in the url is already cached.
FastCachedImageConfig.deleteCachedImage(imageUrl: url);
copied to clipboard
This method deletes the image with given url from cache.
FastCachedImageConfig.clearAllCachedImages();
copied to clipboard
This method removes all the cached images. This method can be used in situations such as user logout, where you need to
clear all the images corresponding to the particular user.
If an image had some errors while displaying, the image will be automatically re - downloaded when the image is requested again.
FastCachedImage have all other default properties such as height, width etc. provided by flutter.
If you want to use an image from cache as image provider, use
FastCachedImageProvider(url);
copied to clipboard
Example #
import 'package:fast_cached_network_image/fast_cached_network_image.dart';
import 'package:flutter/material.dart';

void main() async {
WidgetsFlutterBinding.ensureInitialized();

await FastCachedImageConfig.init(clearCacheAfter: const Duration(days: 15));

runApp(const MyApp());
}

class MyApp extends StatefulWidget {
const MyApp({super.key});

@override
State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
String url1 = 'https://www.sefram.com/images/products/photos/hi_res/7202.jpg';

bool isImageCached = false;
String? log;

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(
height: 150,
width: 150,
child: FastCachedImage(
url: url1,
fit: BoxFit.cover,
fadeInDuration: const Duration(seconds: 1),
errorBuilder: (context, exception, stacktrace) {
return Text(stacktrace.toString());
},
loadingBuilder: (context, progress) {
return Container(
color: Colors.yellow,
child: Stack(
alignment: Alignment.center,
children: [
if (progress.isDownloading && progress.totalBytes != null)
Text('${progress.downloadedBytes ~/ 1024} / ${progress.totalBytes! ~/ 1024} kb',
style: const TextStyle(color: Colors.red)),

SizedBox(
width: 120,
height: 120,
child:
CircularProgressIndicator(color: Colors.red, value: progress.progressPercentage.value)),
],
),
);
},
),
),

const SizedBox(height: 12),

Text('Is image cached? = $isImageCached', style: const TextStyle(color: Colors.red)),

const SizedBox(height: 12),

Text(log ?? ''),

const SizedBox(height: 120),

MaterialButton(
onPressed: () async {
setState(() => isImageCached = FastCachedImageConfig.isCached(imageUrl: url1));
},
child: const Text('check image is cached or not'),
),

const SizedBox(height: 12),

MaterialButton(
onPressed: () async {
await FastCachedImageConfig.deleteCachedImage(imageUrl: url1);
setState(() => log = 'deleted image $url1');
await Future.delayed(const Duration(seconds: 2), () => setState(() => log = null));
},
child: const Text('delete cached image'),
),

const SizedBox(height: 12),

MaterialButton(
onPressed: () async {
await FastCachedImageConfig.clearAllCachedImages();
setState(() => log = 'All cached images deleted');
await Future.delayed(const Duration(seconds: 2), () => setState(() => log = null));
},
child: const Text('delete all cached images'),
),
],
),
)));
}
}


copied to clipboard
Feel free to contribute and support.
Contributors 🤝 #
Big thanks go to these wonderful people:






Author: Christo Pananjickal
Contributor: Wouter van Wijk
Contributor: Merdan Atamyradow
Contributor: Steve
Contributor: Suyog Patil






Package on pub.dev #
fast_cached_network_image

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.