glide
glide copied to clipboard
Image not shown
I use Glide in Compose to show an image from the internet. The setup is pretty simple:
GlideImage(
model = recipe.imageUrl,
contentDescription = recipe.title,
)
the model is like this: "image_url": "http://forkify-api.herokuapp.com/images/best_pizza_dough_recipe1b20.jpg",