]
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?
Modifier is doing is just changing the Image scale and offset
t
Timo Drick
07/11/2023, 1:54 PM
You can use the Modifier.zIndex to put it on front of all other elements
h
henrikhorbovyi
07/11/2023, 1:55 PM
hmmm... it worked 😄 ✅
Thanks, @Timo Drick
r
romainguy
07/11/2023, 3:02 PM
For reference this is not an issue: just like with views the default drawing order is the "layout order" (first child ia drawn first etc.). That's why zIndex exists