Ink
10/18/2021, 12:06 PMDivider(
color = MaterialTheme.colors.background,
modifier = Modifier
.height(150.dp)
.width(2.dp)
)
How Can I add rounded corners for that divider?annsofi
10/18/2021, 12:12 PMbackground
and clip
takes a shape as argument and might work?Ink
10/18/2021, 12:14 PM.border(
width = 2.dp,
color = MaterialTheme.colors.background,
shape = RoundedCornerShape(15.dp)
)