manueldidonna
02/25/2021, 5:30 PMLazyColumn
and CoilImage
without setting a Modifier.height
on it. The scroll offset is resetted to 0 every time I scroll up. @cb I tried with Image
and painterResource
and the bug is absent so I think it depends on Accompanistval pictures = List(10) {
"<https://unsplash.com/photos/Gk2itamk_Lo|https://unsplash.com/photos/Gk2itamk_Lo>"
}
LazyColumn {
items(pictures) {
CoilImage(
data = it,
modifier = Modifier.fillParentMaxWidth(),
contentScale = ContentScale.FillWidth
)
}
}
Andrey Kulikov
02/25/2021, 5:59 PMmanueldidonna
02/25/2021, 6:27 PMcb
02/25/2021, 7:57 PMloading
parameter, rather than fixing the aspect ratio. Both work though 👍manueldidonna
02/25/2021, 8:00 PMcb
02/25/2021, 8:00 PM