Rene Floor

Results 219 comments of Rene Floor

@mvanbeusekom is the maintainer of the library, but I can help as I have Android 12 installed as well. One of the issues is that of course you can already...

@jeroen-meijer You've solved this by stripping away the package name of the font. However, this assume the package is provided by the flutter project where the snapshot is being made....

Yes, that's exactly why there was a rename with a better documentation. You can only control how long you want to have the file on disk. The server controls how...

I don't know what kind of cache headers are set by firebase. You could check that using postman or something similar.

Although the name changed the behaviour shouldn't have changed. When the max-age is 0 it uses a default period of 7 days, because most people will still want to have...

How did you test this? And it shouldn't invalidate the cache, just remove the files.

@nt4f04uNd I just did the following test: ``` void main() { runApp(MyApp()); checkCache(); } Future checkCache() async { var i = 0; while (i < 50) { CustomCacheManager.instance .getFileStream('https://via.placeholder.com/${(i %...

You changed the example from downloading 5 different images to only 'https://via.placeholder.com/3'. The library isn't continuously checking the cache, but only 10 seconds after something happened. So every time after...

I agree that it should be better documented. I think `max-age=0` is often set because devs just miss setting it. However, we got many complaints about the library not caching...

I just had a look at the code, and it looks like the part where the file is really deleted is not awaited. Do you directly try to save after...