flutter_cache_manager
flutter_cache_manager copied to clipboard
Generic cache manager for flutter
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Test refactor ### :arrow_heading_down: What is the current behavior? Uses null aware operator ### :new:...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Feature ### :arrow_heading_down: What is the current behavior? `CacheManager.config` isn't accessible ### :new: What is...
DefaultCacheManager().emptyCache(); also this not working any idea Future _deleteCacheDir() async { final cacheDir = await getTemporaryDirectory(); if (cacheDir.existsSync()) { cacheDir.deleteSync(recursive: true); } }
I'm using `DefaultCacheManager` to download the image on the device so that the next time it will be from the cache. I want to cache these images as encrypted and...
## ๐ฌ Questions and Help Hey @renefloor, Why is webp not in the file list ? const supportedFileNames = ['jpg', 'jpeg', 'png', 'tga', 'cur', 'ico']; Shouldn't it be included ?...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Platform support declaration for pub.dev ### :arrow_heading_down: What is the current behavior? pub.dev incorrectly identifies...
## ๐ Feature Requests ### Describe the feature Like if i am storing video file in cache and in between i want to cancel the ongoing download. I tried doing...
โจ What kind of change does this PR introduce? (Bug fix, feature, docs update...) Added an export to flutter_cache_manager.dart + fixed git url in pubspec.yaml. โคต๏ธ What is the current...
:sparkles: As not all pages have a maxAge, this parameters allow the user to give a maxAge for the file. This way, the user can manage the file validity. If...
## ๐ Enhancement Proposal Some methods such as getFileStream have a `key` parameter. This is very useful in some cases, but is not documented. I suggest adding a little bit...