I’m working on an MIT App Inventor project where I load images from URLs (mainly YouTube thumbnails and other web images).
The issue I’m facing is that sometimes the image URL is not available (for example, 404 error or missing file), and in that case the Image component just shows a blank or broken image.
I want to improve this by checking the image URL first before displaying it in the app.
What I want to achieve:
-
Check if image URL exists before loading it
-
If it does not exist, show a fallback image instead
-
Avoid broken image display in the app
Is there any proper way to do this in App Inventor blocks or using an extension?
