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

## 🚀 Feature Requests Currently the CacheManager only returns the body of the http response. It will be really useful to be able to retrieve also the respnse headers. ###...

type: enhancement

## 🐛 Bug Report I'm trying to get an audio file using a valid `gs://` path and it's throwing a platform exception: ``` E/flutter ( 8213): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: PlatformException(download_error,...

## 🏗 Enhancement Proposal Since version 2.0.0 the flutter_cache_manager exports a class called `Config`. This name is very general and causes problems in all my projects because I have a...

Use hive(https://github.com/hivedb/hive) instead SQLite.

## 🏗 Enhancement Proposal It looks like those three objects are not exposed using the default `package:flutter_cache_manager/flutter_cache_manager.dart`. But especially `CacheStore` seems to be meant to be interacted directly by user...

## 💬 Questions and Help **Background**: I extended `BaseCacheManager` to create a custom cache that uses [Firebase Performance](https://pub.dev/packages/firebase_performance) to trace HTTP network requests. Implementation wise, it's very simple: Just like...

## 🚀 Feature Requests When getting a file (e.g. via `getSingleFile`) it'd be nice to also know wether it came from cache or the internet. We already can do this...

## 🐛 Bug Report I will be downloaded mp3 file from cloud storage. Then used getSingleFile api and custom cache manager. ```dart class CustomCacheManager extends BaseCacheManager { factory CustomCacheManager() =>...

## 🏗 Enhancement Proposal Have cache manager keep a count of cache hit/misses during use. ### Pitch Something that popped into my head while testing for #179, it would be...

type: enhancement

## 🐛 Bug Report I am trying to remove a specific file from the cache and clear cache too. ### Expected behavior (The problem only occurs in Android) My customer...