antonb03
antonb03
I am seeing the same issue with the `GlideImage`. I think the issue might be in `GlideImage` in line 169 ``` val drawable = glideImageState.drawable ?: return@ImageRequest imageOptions.LandscapistImage( modifier =...
As a workaround, the `success` callback can be used ``` CoilImage( imageModel = it.location, success = { coilImageState -> val drawable = coilImageState.drawable Image( painter = rememberDrawablePainter(drawable = drawable), contentScale...
I created a sample project that reproduces the problem. You can check it here https://github.com/antonb03/fillwidthexample
In my case, I don't want to hardcode the image height because the images from the url can be of various heights. Also, screen width is different for different devices...
Just tested it and it works as expected. Thank you so much! @luiscurini I think the issue can be closed