um, is it possible for `Column` to have `Arrangmen...
# compose
p
um, is it possible for
Column
to have
Arrangment.spacedBy()
and
Arrangment.Center
at the same time?
n
it seems there is a method :
Copy code
@Stable
fun spacedBy(space: Dp, alignment: Alignment.Vertical): Vertical =
    SpacedAligned(space, false) { size, _ -> alignment.align(0, size) }
p
ah, I see, thanks!