Hello, does anyone know how to set the elevation t...
# compose-desktop
s
Hello, does anyone know how to set the elevation to an undecorated window? I have tried using the
Modifier
on my background composable but the elevation gets clipped.
k
That wouldn't work since that drop shadow will need to be somehow displayed by the OS itself
👍🏻 1
s
Ah, got it. I was able to get the shadow for undecorated windows by setting
transparent
to
false
. But it’s only working on Mac and not on Windows.