We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7387671 commit d6a3cd6Copy full SHA for d6a3cd6
packages/flutter/lib/src/painting/_network_image_io.dart
@@ -164,6 +164,8 @@ class NetworkImage extends image_provider.ImageProvider<image_provider.NetworkIm
164
// have had a chance to track the key in the cache at all.
165
// Schedule a microtask to give the cache a chance to add the key.
166
scheduleMicrotask(() {
167
+ print('hi key=$key keys=${PaintingBinding.instance.imageCache.keys} '
168
+ 'keystoevcit=${image_provider.ResizeImage.keysFor(PaintingBinding.instance.imageCache.keys, key)}');
169
image_provider.ResizeImage.keysFor(PaintingBinding.instance.imageCache.keys, key)
170
.forEach(PaintingBinding.instance.imageCache.evict);
171
});
0 commit comments