Colin White
Colin White
@jakepurple13 Setting `size(Size.ORIGINAL)` skips waiting for Compose to call [this callback](https://github.com/coil-kt/coil/blob/main/coil-compose-base/src/main/java/coil/compose/AsyncImage.kt#L207). It sounds like that callback isn't being called, which causes the request to get stuck.
Thanks for the report! I'll take a closer look, however I don't think we can use `LaunchedEffect` unfortunately as this would delay checking the memory cache synchronously, which would add...
Which version of Compose are you using?
Thanks! I think we can ship this with a few changes: - Let's put these changes behind a flag in `SvgDecoder.Factory`'s constructor. We need to preserve the existing behaviour for...
@seanpont Ah gotcha! If you'd like to make the change to the 2.x releases you'll need to target your PR to the `2.x` branch. `main` currently has all the 3.0...
This is currently intended behaviour. Coil only loads the `placeholder` in the preview environment - mostly since we can guarantee that the `placeholder` isn't a URL or another data type...
Let's keep this open to track.
This is now more important given [androidx's new screenshot testing library](https://developer.android.com/studio/preview/compose-screenshot-testing) sets `isPreview = true` and doesn't set a `Dispatchers.Main` implementation. This means `FakeImageEngine` can't easily be used in that...
This is now supported in `3.0.0-alpha07` so you can do: ```kotlin AsyncImage( model = R.drawable.sample, contentDescription = null, ) ``` It's not possible to load files or access the network...
What's the exception stacktrace from `AsyncImage`'s `onError`?