Hi Guys, I got an interesting question about jetpack compose margin.
As we can implement margin using padding or *Spacer*;
Is it better to use padding instead?
I said that because I now each composable is passed through compose, layout, drawing steps and I thought setting padding is just done on layout phase of that composable but Spacer will be passed in 3 phases separately. And Spacer creates extra Layout.
Am I right?!
#kotlin #compose