
Hi All, This is the very basic Text View Sample Jetpack compose. 1. Text Color: Change the text color using color parameter @Composable fun ColorText() { Text("Text in Red Color", color = Color.Red , modifier = Modifier .padding(8.dp) // margin .padding(8.dp) // padding ) } 2. Text Size:...