https://kotlinlang.org logo
#compose
Title
# compose
t

Tash

11/15/2020, 5:12 AM
After updating to
alpha07
& chrisbanes/accompanist v0.3.3.1 , loading a
CoilImage
in this manner:
Copy code
CoilImage(
    contentScale = ContentScale.Crop,
    data = "some image url",
    fadeIn = true,
    error = { Text("Could not load image") }
)
fails with:
skia: --- Failed to create image decoder with message 'unimplemented'
The result is that the image does not load, and the error Composable is shown. Anyone else experiencing this?
29 Views