Hello, whenever I apply a border to my `Card`, the...
# compose
n
Hello, whenever I apply a border to my
Card
, there is being a darker image on the rounded corners on the light mode. Is this a known bug?
Copy code
Card(
    modifier = modifier,
    shape = RoundedCornerShape(3.dp),
    border = BorderStroke(1.dp, MyTheme.colors.appBackground3)
) {
    ...
}
z
Does that happen on devices or just the emulator?
n
hmm good question let me check on my device, only tested on emulator
happening on my device ,too
m
Maybe related ro elevation. Try to set it to 0dp. Does the problem go away?
n
Yes tried it but same
z
Please file a bug, tracker link in channel topic
n
Thanks!
z
(and please post a link here when you’ve done so for future readers)
đź‘Ť 1