Hi guys, i tried doing border around image, well i...
# compose
d
Hi guys, i tried doing border around image, well it worked but i want it blurred, can't use blur since its blurring image also. I tried doing border (in the Box) outside of Image section, it worked but still can't apply blur to it.
Copy code
Image(
                painter = painterResource(R.drawable._448_profilecover_1682290871382), //placeholder
                contentDescription = "",
                modifier = Modifier
                    .padding(5.dp)
                    .border(
                        border = BorderStroke(
                            width = 2.dp,
                            color = colorResource(id = R.color.black)
                        )
                    )
                    .wrapContentSize()
            )
I have no idea what more can i do to make it work
a
Instead of blurring the border, try using a linear gradient brush.