coil-kt / coil

Image loading for Android and Compose Multiplatform.

Home Page:https://coil-kt.github.io/coil/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image not showing with coil-compose 2.0.0rc1

GabrielLasso opened this issue · comments

Describe the bug
I am trying to load an icon from a URL using coil-compose 2.0.0rc1, but it won't load

To Reproduce
A code example is:

@Composable
fun Test() {
    val painter = rememberAsyncImagePainter("https://s3-sa-east-1.amazonaws.com/delivery-direto-test/img/card-brands/visa.png")
    Icon(
        painter = painter,
        contentDescription = null,
        modifier = Modifier
            .padding(0.dp, 0.dp, 16.dp, 0.dp)
            .size(32.dp, 20.dp)
    )
}

Logs/Screenshots
If applicable, add logs or screenshots to help explain your problem.

Version
What library version are you using? Does this occur on a specific API level or Android device?
implementation "io.coil-kt:coil-compose:2.0.0-rc01"

Duplicate: #901

@colinrtwhite I changed to Image and it still now works... I think you can reopen the issue

@GabrielLasso I tested in the sample app and that URL loads as expected. It might be a local issue in your app; I don't think this is a bug in the library.

@colinrtwhite oh... Ok... I will investigate what is happening here... Thanks