I was trying to build basic app with jetpack compose. I tried this:
@Composable
fun thisWillAppearInView(){
Text(text = "Hello")
Text(text = "\nLarger font")
}
But when I tried to use the third Text Function, the preview started getting overlapped.
The code was like this:
@Composable
fun thisWillAppearInView(){
Text(text = "\nHello")
Text(text = "\nLarger font")
Text(text = "Smaller font")
}

