Column, Row


Column

Column { //세로로 배치해준다.
    Text(text = "hello")
    Text(text = "test")
}

Untitled

Row

Row {
    Text(text = "hello")
    Spacer(modifier = Modifier.width(20.dp))
    Text(text = "World")
}

Untitled