Compose UI – Text, Button, Image, Row/Column 같은 기본 위젯
Compose UI – Text, Button, Image, Row/Column 같은 기본 위젯Jetpack Compose에서는 다양한 UI를 손쉽게 구현할 수 있도록 기본적인 Composable 함수들을 제공합니다. 이번 글에서는 가장 기본적인 Text, Button, Image, 그리고 Row / Column 같은 레이아웃 관련 위젯을 다뤄보겠습니다.1. Text – 텍스트 표시하기Text는 Compose에서 문자열을 화면에 출력할 때 사용하는 가장 기본적인 Composable입니다.예제: 기본적인 Text 사용법@Composablefun TextExample() { Text(text = "Hello, Compose!", fontSize = 20.sp, fontWeight = FontWeight..
2025. 2. 15.