henrikhorbovyi
07/11/2023, 1:48 PMbug/known issue/misimplementation?
]
Inside my LazyColumn I have many text items and a zoomable Image, when I zoom the Image I noticed this strange behavior:
The image is over the text above it, but it is under the text bellow it. 🤔 Is this a known issue?henrikhorbovyi
07/11/2023, 1:49 PMLazyColumn {
items(3) {
Text(text = "Lorem Ipsum...")
}
item {
Image(
painter = painterResource(id = R.drawable.ic_photo),
modifier = Modifier.size(200.dp).zoomable(rememberZoomState(snapBackOnRelease = true)),
contentDescription = null,
)
}
items(3) {
Text(text = "Lorem Ipsum...")
}
}
henrikhorbovyi
07/11/2023, 1:51 PMzoomable
Modifier is doing is just changing the Image scale and offsetTimo Drick
07/11/2023, 1:54 PMhenrikhorbovyi
07/11/2023, 1:55 PMromainguy
07/11/2023, 3:02 PMhenrikhorbovyi
08/01/2023, 5:23 PM