Home > Back-end >  Display .ico or .icon image in flutter
Display .ico or .icon image in flutter

Time:01-26

I have an API providing images with .icon format and I would like to display the image on my Flutter app.

CodePudding user response:

you can use image widget for it like bellow

Image.asset("assets/images/home.ico"),
      Image.network(
          "https://api.hala-on.com/category_images/icons/1672329105.icon"),

i have write these two widgets of image in actions and see the results one is displaying the .ico image from the assets and the other is displaying the image from the link you provided.

see the results

enter image description here

Code for this

enter image description here

  • Related