728x90
반응형
Jetpack Compose Text 만들기
@Composable
fun BirthdayGreetingWithText(message:String,from:String) {
// 함수 단어 첫말은 대문자로
Column {
Text(text = message, fontSize = 36.sp)
Text(text = from , fontSize = 24.sp ) //각 Text를 작성 할 수 있따.
}
//Column은 안에 Text들이 수직적으로 나열되도록 해줌!
//Row는 수평적으로 나열
}
@Preview(showBackground = true) //미리 볼 수 있도록 하는 주석
@Composable
fun DefaultPreview() {
HapplyBirthdayTheme {
BirthdayGreetingWithText(message = "Happy Birthday Hyeon!",from="from Summer")
}
}
728x90
반응형
'Android > Compose' 카테고리의 다른 글
[Compose] Compose에서 MVVM 패턴을 적용해보자 (0) | 2024.11.05 |
---|---|
[요즘 IT] Jetpack Compose를 배워야하는 이유? (0) | 2022.11.23 |