Compose의 세 가지 표준 레이아웃 요소는 Column, Row, Box composable이 존재한다.이 셋은 상위 UI 요소 역할을 할 수 있다. 즉, 이 안에 다양한 ui 요소를 담을 수 있다는 것이다. 예를 들어, 단순히 composable function 안에 다음과 같이 text를 나열할 수 있는데,@Composablefun GreetingText(message: String, from: String, modifier: Modifier = Modifier) { Text( text = message, fontSize = 100.sp, lineHeight = 116.sp ) Text( text = from, font..