jean
12/15/2021, 9:11 AM"io.coil-kt:coil-compose:1.4.0"
instead of accompanist
and I’m back at the same problem. Images are not loading when I set them from the items
block of the LazyListScope
block. Do I need to change anything?
Image(
painter = rememberImagePainter(url),
contentDescription = stringResource(id = R.string.description),
contentScale = ContentScale.Crop,
modifier = Modifier
.width(150.dp)
.height(267.dp),
)
Chris Sinco [G]
12/15/2021, 5:30 PM1.4.0
and have a custom Card composable in a LazyColumn. I’m using Compose 1.1.0-beta04. Does it work if you put it in Composable and not directly in the items block?jean
12/15/2021, 8:59 PMChris Sinco [G]
12/15/2021, 11:49 PMjean
12/16/2021, 7:33 AM