Roar Gronmo
12/09/2019, 2:37 PMcrossAxisAlignment
(and mainAxisAlignment
) which we could sett to CrossAxisAlignement.End
( or MainAxisAlignment.End
)
I want to align thos two texts below to the right, how is that done in dev03 ?
Column(modifier = Spacing(right = 4.dp) )
{
Surface(color = Color.Blue) {
Text(text = "2019.12.09 12:00")
}
Surface(color = Color.Red) {
Text(text = "14d 16h 00min")
}
}
matvei
12/09/2019, 3:04 PMSurface(color = Color.Blue, modifier = Gravity.End) {
Text(text = "2019.12.09 12:00")
}
Roar Gronmo
12/09/2019, 8:39 PMLouis Pullen-Freilich [G]
12/09/2019, 11:07 PM