flutter_cache_manager icon indicating copy to clipboard operation
flutter_cache_manager copied to clipboard

Generic cache manager for flutter

Results 166 flutter_cache_manager issues
Sort by recently updated
recently updated
newest added

### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Upgrades `rxdart` to 0.28.0 to allow apps that are depending on that version to compile....

### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Update versions and align sdk ### :arrow_heading_down: What is the current behavior? ### :new: What...

## 🔙 Regression ### Old (and correct) behavior I was able to use the latest version of rxdart together with flutter_cache_manager ### Current behavior When I update rxdart to the...

### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Feature ### :arrow_heading_down: What is the current behavior? Plugin does not support using a custom...

try { return await DefaultCacheManager().getSingleFile(url); } catch (e) { debugPrint('Failed to load image: ${e}'); return null; } Should not crash or pause the app

``` if (toRemove.contains(cacheObject.id)) return; toRemove.add(cacheObject.id!); if (_memCache.containsKey(cacheObject.key)) { _memCache.remove(cacheObject.key); } if (_futureCache.containsKey(cacheObject.key)) { await _futureCache.remove(cacheObject.key); } final file = io.File(cacheObject.relativePath); if (file.existsSync()) { try { await file.delete(); // ignore: unused_catch_clause...

## 💬 Questions and Help Hi, I've looked through the documentation, the issues on GitHub and source code. I'd like to know, using its URL, if a file exists in...

## 💬 Questions and Help I was trying to follow on old [medium article](https://medium.com/flutter-community/golden-testing-using-cachednetworkimage-1b488c653af3) linked in a [stack overflow question](https://stackoverflow.com/questions/59408845/how-to-write-widget-test-for-cachednetworkimage-in-flutter) to figure out how to write a widget test for...

## 🏗 Enhancement Proposal I recently was able to support all native platforms and web with an emulation of how the browser works with saving, revalidating and evicting cache. https://github.com/rodydavis/http_get_cache...

## 🚀 Feature Requests Fetch and provide response body for certain error status codes. ### 🎤 Pitch Many APIs provide further information in the response on bad client requests (status...