Jetpack Compose Text 세로 정렬
Jetpack Compose Text에서 가로 정렬은 되지만 세로 정렬이 안되면 아래 옵션을 추가한다. @Composable fun TextCell (text: String, modifier: Modifier = Modifier, fontSize: Int = 150 ) { val cellModifier = Modifier . padding ( 4 . dp ) . border ( width = 5 . dp , color = Color. Black ) . wrapContentHeight (Alignment. CenterVertically ) Surface { Text ( text = text, cellModifier.then(modifier), fontSize = fontSize. sp , fontWeight = FontWeight. Bold , textAlign = TextAlign. Center ) } }