flutter_cached_network_image
flutter_cached_network_image copied to clipboard
Error: Invalid image data, but Image.network() works fine.
🐛 Bug Report
CachedNetworkImage(
imageUrl: url,
placeholder: (context, url) => const CircularProgressIndicator(),
errorWidget: (context, url, error) => Text(error.toString()),
httpHeaders: {},
);
tried image URL: https://www.apple.com/v/iphone/home/bu/images/overview/select/iphone_15_pro__bpnjhcrxofqu_large_2x.png
Error: Invalid image data.
The following works fine with the same URL.
Image.network(
url,
headers: {},
);
Android 14 real device.
我也遇到了同样的问题
ios也不行 改成http可以正常加载
having the same issue!
having the same issue
Facing the same issue.
Facing same issue
Having the same issue.