longer disposal timeout

This commit is contained in:
Fabian Freund
2026-02-02 23:35:24 +01:00
parent 08b9f5550a
commit 006b56a7ca
+1 -1
View File
@@ -40,7 +40,7 @@ class EquatableImage {
if (_isDisposed) return;
_isDisposed = true;
// Delay disposal to allow widgets to finish rendering
Future.delayed(const Duration(milliseconds: 500), () {
Future.delayed(const Duration(seconds: 3), () {
_value?.dispose();
_value = null;
});