How can I do `arrangement.End` and `spacedBy(x.dp)...
# compose
k
How can I do
arrangement.End
and
spacedBy(x.dp)
for a row?
s
There's a second argument to
spacedBy
which is an
Alignment
. Does that work for you? (
spacedBy(x.dp, Alignment.End)
)
👍 1
k
Oh, In completely missed that one