Also, is it possible to remove the top and bottom ...
# compose
p
Also, is it possible to remove the top and bottom margin (padding) between two OutlinedButtons in a LazyColumn? I tryed with
Copy code
.padding(top = 0.dp, bottom = 0.dp)
but it doesn't work, I need the two buttons without margins
s
Padding only adds padding. If you call it multiple times, it will add the values together. Not sure what you're trying to do, but you probably want to make a custom button for it. It's simple enough with a clickable
Surface
or
Box