panpf / sketch

Sketch is an image loading library designed for Compose Multiplatform and Android View. It is powerful and rich in functions. In addition to basic functions, it also supports GIF, SVG, video thumbnails, Exif Orientation, etc.
Apache License 2.0
2k stars 307 forks source link

AsyncImage只设置宽度没有设置高度时无法显示图片 #194

Closed RavenLiao closed 2 months ago

RavenLiao commented 3 months ago

Sample code

AsyncImage(
    imgUrl,
    null,
    Modifier
        .fillMaxWidth()
        .wrapContentHeight(),
    contentScale = ContentScale.FillWidth
)

这种方法加载图片时,无法显示图片,疑似高度为0。 但使用Coil时,能给正常显示图片,是按比例填满宽度显示。 希望能同步实现。

Versions

panpf commented 2 months ago

3.3.2 版本已修复