cached_network_image_ce 4.2.0
cached_network_image_ce: ^4.2.0 copied to clipboard
Community Edition Flutter library to load and cache network images. Can also be used with placeholder and error widgets.
Cached Network Image β Community Edition #
A Flutter library to show images from the internet and keep them in the cache directory.
This is the actively maintained, high-performance community fork of cached_network_image.
π The Story: Why this fork? #
The original cached_network_image package by Baseflow is a titan in the Flutter ecosystem, used by millions. However, it has been effectively unmaintained since August 2024, leaving over 300 issues unresolved, including critical memory leaks and scroll performance bugs.
As the Flutter ecosystem evolved, the original architecture began to show its age. It relied on sqflite for cache managementβa heavy, SQL-based solution that requires platform channels to communicate with native code. For a simple task like "checking if an image exists," this overhead caused UI jank in heavy lists.
We created the Community Edition (_ce) to fix this.
We didn't just fork it to merge dependabot PRs. We re-engineered the caching layer.
β‘ The Architectural Shift: SQLite vs. Hive #
We replaced the heavy sqflite dependency with hive_ce.
- Old Way (
sqflite): serialized data β Platform Channel β Java/Obj-C β SQLite β Disk. (Slow, blocking). - New Way (
hive_ce): Dart Memory β Direct Disk Access. (Instant, non-blocking).
The result? Zero-jank scrolling.
π Benchmarks #
We benchmarked the cache metadata operations (checking, writing, and deleting cache entries) on an iPhone Simulator. The results speak for themselves:
| Operation | Payload Size | Original (sqflite) |
CE (hive_ce) |
Improvement |
|---|---|---|---|---|
| Read (Hit Check) | 10 KB | 16 ms | 2 ms | β‘ 8.00x Faster |
| Write (New Image) | 10 KB | 116 ms | 29 ms | π 4.00x Faster |
| Delete (Cleanup) | 10 KB | 55 ms | 19 ms | π§Ή 2.89x Faster |
| Read (Large) | 1 MB | 8 ms | 1 ms | β‘ 8.00x Faster |
Note: "Read" is the most critical operation for scrolling performance, as every list item checks the cache before rendering.
π Features #
- Drop-in Replacement: 99% API compatible with the original package.
- High Performance: Powered by
hive_cefor instant cache lookups. - Actively Maintained: Regular updates, bug fixes, and community-driven roadmap.
- Web Support: Minimal support for web (currently works like standard
Image.network).
π¦ Installation #
Add cached_network_image_ce to your pubspec.yaml:
dependencies:
cached_network_image_ce: ^4.0.1
π» How to use #
The API is identical to the original package. You can use CachedNetworkImage directly or via ImageProvider.
Both CachedNetworkImage and CachedNetworkImageProvider have minimal support for web (currently without caching).
Basic Usage with Placeholder #
import 'package:cached_network_image_ce/cached_network_image.dart';
CachedNetworkImage(
imageUrl: 'https://via.placeholder.com/350x150',
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Icon(Icons.error),
),
With Progress Indicator #
CachedNetworkImage(
imageUrl: 'https://via.placeholder.com/350x150',
progressIndicatorBuilder: (context, url, downloadProgress) =>
CircularProgressIndicator(value: downloadProgress.progress),
errorWidget: (context, url, error) => Icon(Icons.error),
),
Advanced Usage (ImageBuilder) #
Use this when you need an ImageProvider for things like DecorationImage:
CachedNetworkImage(
imageUrl: 'https://via.placeholder.com/200x150',
imageBuilder: (context, imageProvider) => Container(
decoration: BoxDecoration(
image: DecorationImage(
image: imageProvider,
fit: BoxFit.cover,
colorFilter: ColorFilter.mode(Colors.red, BlendMode.colorBurn),
),
),
),
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Icon(Icons.error),
),
Direct ImageProvider Usage #
Image(image: CachedNetworkImageProvider(url))
SVG Support #
Flutter's built-in image codec doesn't support SVG. When CachedNetworkImage
detects SVG bytes it throws an UnsupportedImageFormatException. Use the
unsupportedImageBuilder callback to render them with any SVG package you
prefer (e.g. flutter_svg):
Before using SvgPicture.memory, add flutter_svg to pubspec.yaml
(dependencies: flutter_svg: ^2.2.1) and import
package:flutter_svg/flutter_svg.dart.
CachedNetworkImage(
imageUrl: 'https://example.com/image.svg',
unsupportedImageBuilder: (context, url, bytes) {
// `bytes` are the already-cached file bytes.
return SvgPicture.memory(bytes); // from flutter_svg
},
placeholder: (context, url) => CircularProgressIndicator(),
errorWidget: (context, url, error) => Icon(Icons.error),
),
The image is still downloaded and cached normally β only the rendering
path is different. If unsupportedImageBuilder is not set, the error falls
through to errorWidget with an UnsupportedImageFormatException.
β FAQ #
Q: Will I lose my users' existing cache if I migrate? A: Yes. Because we switched the storage engine from SQLite to Hive, the old cache files will be ignored. Users will re-download images once as they browse. This is a one-time migration cost for a permanent performance gain.
Q: My app crashes/pauses on errors?
A: In Debug mode, Flutter may pause on exceptions even if they are caught. This is expected behavior for network errors (404s). In Release mode, these are handled silently by the errorWidget.
π€ Contributing #
We welcome contributions! If you want to help maintain this essential package, please check the CONTRIBUTING.md.
π License #
This project is licensed under the MIT License.