본문 바로가기

[Jetpack Compose] Text 만들기

@hyeon.s2022. 11. 24. 13:45

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")
    }
}

 

hyeon.s
@hyeon.s :: 개발로그
목차