[JetPack Compose] Text() 함수 인자 분석
: Composable Text() 함수 사용법을 인자값을 변경해 가면서 테스트 해봤습니다. 함수 선언 : Text.kt 에 정의 함수인자 Params: text - The text to be displayed. modifier - Modifier to apply to this layout node. color - Color to apply to the text. If Color.Unspecified, and style has no color set, this will be LocalContentColor. fontSize - The size of glyphs to use when painting the text. See TextStyle.fontSize. fontStyle - The typeface v..