I’m creating a layout with Jetpack Compose and there is a column. I would like center one composable and the other to align to the bottom.
Here is an image of my target screen
here
I spent day working it out, SpaceAround
and SpaceBetween
didn’t help.
I would appreciate any help.
2
Answers
You can use a custom layout or something like:
Use a Column with
weight(1f)
andverticalArrangement = Arrangement.Center
to wrap the first item. Here’s the code