'How to get the size of a network image in flutter?

I need to get the file size of the image that is a network image. I mean size in Kb, Mb, etc. How can I get it?



Solution 1:[1]

You can get the size of the network Image by HTTP head request.

  http.Response r = await http.head(Uri.parse('https://i.stack.imgur.com/lkd0a.png'));
  print(r.headers["content-length"]); //545621 means 546 KB

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1