Is Coil not working in compose? try displaying any...
# compose
p
Is Coil not working in compose? try displaying any remote image, you will see that a white space is displayed instead of the image. I tryed with last Coil version, 2.6.0:
Copy code
AsyncImage(
        model = ImageRequest.Builder(context = LocalContext.current)
            .data("<https://mars.nasa.gov/msl-raw-images/msss/01000/mcam/1000MR0044631300503690E01_DXXX.jpg>")
            .build(),
        contentScale = ContentScale.Crop,
        contentDescription = stringResource(R.string.mars_photo),
        modifier = modifier
    )
well, it started working after disabling and reenabling wifi and internet on emulator, don't know why...