[Kotlin] Compose 입문 #2 - Image, Card, Scaffold, TextField, 구조분해, 코루틴 스코프
CardView와 동일한 기능을 하는 Card // CardView와 동일한 기능 Card( modifier = Modifier .fillMaxWidth(0.5f) .padding(16.dp), // fraction으로 비율 지정 : 절반 shape = RoundedCornerShape(8.dp), // 모서리 둥글게 elevation = 5.dp, ) { Box( modifier = Modifier.height(200.dp) ) { // Image 소스를 가져올 때는 painter 사용 Image( painter = painterResource(id = R.drawable.umc), contentDescription = "설명 : 인생네컷", contentScale = ContentScale.Crop,..