https://kotlinlang.org logo
z

Zoltan Demant

09/30/2021, 1:07 PM
Card shadows are cut off when using
Modifier.alpha
, due to the underlying call to `graphicsLayer`; is there a way to work around this?
c

Can

09/30/2021, 1:11 PM
Just an idea: Use
graphicsLayer
directly?
So something like this:
Copy code
modifier = Modifier
    .graphicsLayer {
        clip = false
        alpha = xxx
     }
z

Zoltan Demant

09/30/2021, 1:13 PM
I tried that, thinking that the clip was the issue - no difference 😞
a

Andrey Kulikov

09/30/2021, 5:35 PM
2 Views