https://kotlinlang.org logo
#compose
Title
# compose
s

sunnat629

02/25/2020, 8:05 AM
What's the alternative of
Spacing()
modifier in
dev05
? Or am I missing something?
i

Ian Warwick

02/25/2020, 8:50 AM
I think its
LayoutPadding
now but not 100% sure myself
👍 2
I don't know if there was a different between
Spacing
and
LayoutPadding
in the first place. Are they equivalent? Anyway swapping it for
LayoutPadding
did the trick for me
m

matvei

02/25/2020, 9:59 AM
Ian is right,
LayoutPadding
is a recommended way now
👍 3
Or
Spacer
component to define some space between items
👍 1
s

sunnat629

02/25/2020, 10:27 AM
Thank you all. 🙏