Closed andiosdev closed 4 months ago
Please post your actual code and error log.
I don't think it has error, image just does not load. I used the actual code mentioned and followed the instruction. I'm not sure if I'm missing something.
I want to know from your actual code the url of the image you actually loaded. If it is "http://sample.com/huge_world.jpeg" then there must be something wrong because it is a fake url and it cannot be accessed. I just use it for a demonstration.
This is the image url I used: https://cdn.pixabay.com/photo/2016/09/07/10/37/kermit-1651325_1280.jpg
By the way, I was able to load the image using SketchZoomAsyncImage but not with CoilZoomAsyncImage.
For network image issues of coil, please refer to the official documentation of coil, for example: https://coil-kt.github.io/coil/upgrading_to_coil3/#network-images
Describe the bug Followed the instruction and yet image is not loading
Affected platforms
Affected components
Sample code SketchZoomAsyncImage( uri = "http://sample.com/huge_world.jpeg", contentDescription = "view image", modifier = Modifier.fillMaxSize(), )
CoilZoomAsyncImage( model = "http://sample.com/huge_world.jpeg", contentDescription = "view image", modifier = Modifier.fillMaxSize(), )