0

I am developing simple GUI program using kivymd.
I tried to display image with Image List but ImageList occurs some problems so I need another widget that displays image.

I searched on kivymd but I found only Image List.
Is there some good widget that displays Image?

What I need:

  1. I have to display image from url.
  2. I don't want Image button. Just image.
  3. I don't want any text on image.

Please help me. Thanks.

Superjay
  • 447
  • 1
  • 7
  • 25

1 Answers1

0

You can use AsyncImage. AsyncImage fetches images from url and show them when they are loaded. You can even add a loading screen of your own too. Also, I assume you want to show multiple images in a layout like in ImageList. So what you can do is create a GridLayout and inside that grid layout you can add multiple Async Images. You can check docs here

Ankit Sangwan
  • 1,138
  • 1
  • 7
  • 20