Compose๋ ํ, ์ด, ๋ฐ์ค ์ธ๊ฐ์ง ๊ธฐ๋ณธ ๋ ์ด์์์ ๊ฐ์ง๋ค.
//row ex)
Row {
Text(
text = from,
fontSize = 24.sp
)
Text(
text = message,
fontSize = 36.sp
)
}
image composable์ฌ์ฉ
painter : ์ด๋ฏธ์ง ๋ฆฌ์์ค ID
contentDescription : ๊ตฌ๊ธ์ ์ฅ์ ๊ฐ ์๋ ์ฌ์ฉ์์๊ฒ TalkBack์ด๋ผ๋ ์๋น์ค๋ฅผ ํตํด ํ๋ฉด์ ์ฝ์ด์ฃผ๋๋ฐ ๊ทธ๋ ์ฝํ ๋ฌธ์์ด์ ์
๋ ฅ. nullSafety์ด๊ธฐ ๋๋ฌธ์ null์
๋ ฅํ๋ฉด talkBackํ ๋ ์๋ตํจ
@Composable
fun BirthdayGreetingWithImage(message: String, from: String) {
val image = painterResource(id = R.drawable.androidparty)
Image(
painter = image,
contentDescription = null
)
}