0

Having this:

@Preview
@Composable
fun ButtonTest() {
    Button(onClick = {}, Modifier.border(1.dp, Color.Red)) {
        Text("test")
    }
}

produced UI looks like this:

enter image description here

How can I remove white margins at top and bottom?

Radek Postołowicz
  • 4,506
  • 2
  • 30
  • 47

1 Answers1

1

I found the answer in kotlin community slack archive: https://kotlinlang.slack.com/archives/C01D6HTPATV/p1664901247640999

enter image description here

Radek Postołowicz
  • 4,506
  • 2
  • 30
  • 47