:o:
:o:
## 🏗 Enhancement Proposal Spent a good amount of time trying to debug why an updated image on the backend for the same URL still showed the previous image even...
## avoid_returning_null_for_void This issue proposes that the lint rule `avoid_returning_null_for_void` should not only work for `void` and `Future`, but also for `FutureOr`. ```dart void funVoid() {} void funVoidReturn() { return;...
There are quite a few issues about the use case of changing images behind an identical URL. E.g. user profile pictures that have been changed by the user. - https://github.com/Baseflow/flutter_cached_network_image/issues/768...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) - Adds bugfix for #436 - Adds a test `Outdated cacheFile should call to web,...
## 🐛 Bug Report Moving https://github.com/Baseflow/flutter_cached_network_image/issues/898 to here. https://github.com/Baseflow/flutter_cache_manager/blob/32b71c1da1689b97434959ac407b03b74d7e405c/flutter_cache_manager/lib/src/cache_manager.dart#L137-L157 Currently, in `CacheManager._pushFileToStream` when a `cacheFile` exists, the cached content is emitted, and if it is outdated, a network request is...
```dart import 'package:fuzzy/fuzzy.dart'; void main() { final fuse = Fuzzy(['apple', 'banana', 'orange']); final result = fuse.search('ran'); result.map((r) => r.output.first.value).forEach(print); // ^^^^^^ The getter 'output' isn't defined for the type 'Result'...
## Description ``` // init: controllerSubscription = widget.controller?.events.listen(_controllerListener); // dispose: controllerSubscription?.cancel(); ``` ## Related Issues Fixes: ``` Unhandled Exception: This widget has been unmounted, so the State no longer has...
The following is covered by `unrelated_type_equality_checks`: ```dart void someFunc(int number, String string) { if (number == string) {} // linter gives a warning for unrelated types } ``` But the...
fix for https://github.com/KasemJaffer/receive_sharing_intent/issues/356 fixes swift compile errors for ios in `RSIShareViewController` in flutter stable `3.29.0` - fix viewDidAppear: - Value of type 'Any' has no member 'hasItemConformingToTypeIdentifier' - Value of...
when trying to build for ios with package version `1.8.1` and flutter version `3.29.0` (stable), we get mutliple swift compile errors in `RSIShareViewController` - viewDidAppear: - Value of type 'Any'...