flex-direction : column
Column { //세로로 배치해준다. Text(text = "hello") Text(text = "test") }
flex-direction : row
Row { Text(text = "hello") Spacer(modifier = Modifier.width(20.dp)) Text(text = "World") }