I want to add border on bottom of the layout. I know i can use Divider composable but i just want to learn how to draw a border.
Currently i can add border for all sides which is not i want
Row(modifier = Modifier.border(border = BorderStroke(width = 1.dp,Color.LightGray))) {
TextField(value = "", onValueChange = {}, modifier = Modifier.weight(1f))
Switch(checked = true, onCheckedChange = {})
Icon(Icons.Filled.Close, "Remove", tint = Color.Gray)
}
