Colin White
Colin White
@Bodo1981 I haven't had a chance to look into this. If you're able to track down the issue locally, I'd accept a PR that patches the issue. Unfortunately this sounds...
Hey folks if you're having performance issues I'd recommend trying the latest `3.0.0` alphas, as it should be faster. There's been work done in `AsyncImagePainter` to avoid Compose and Coroutines...
Thanks for the repro test case! This looks related to https://github.com/coil-kt/coil/issues/1711. I think removing the mapping [here](https://github.com/coil-kt/coil/blob/main/coil-compose-base/src/main/java/coil/compose/AsyncImagePainter.kt#L338) should fix this, though we'll need to make sure removing it doesn't have...
Hmm this does look different than #1711 actually.
Would creating your own composite listener fulfill this use case? ``` class CompositeListener : ImageRequest.Listener { val listeners = mutableListOf() override fun onStart(request: ImageRequest) { listeners.forEach { it.onStart(request) } }...
Going to close this as it's possible to do the above. ^
@takahirom Yep, the expected + actual are what I'm seeing too. Part of the reason `AsyncImage` works, but `rememberAsyncImagePainter` doesn't is `rememberAsyncImagePainter` has to grab the size for the image...
@kartik-prakash I haven't had a chance to take a look at this further as I'm focused on the 3.x work. If you're able to track down the issue locally, I'd...
This has been fixed in the `3.x` alpha releases.
Added support for `wasmJs` [here](https://github.com/square/okio/pull/1389). Support for `wasmWasi` is blocked by `kotlinx.datetime`.