I am trying to run a simple LazyColumn Object, but am unable to run it without this weird error. Here is my code:
@Composable
fun Test(){
LazyColumn() {
Text(text = "Placeholder", fontSize= 30.sp)
Spacer(modifier = Modifier.padding(10.dp))
}
}
Here are the errors:
org.jetbrains.kotlin.diagnostics.SimpleDiagnostic@74c0fa2 (error: could not render message)
org.jetbrains.kotlin.diagnostics.SimpleDiagnostic@c077eec3 (error: could not render message)
Is it something wrong with my code, or is it a bug? *I wanted to test the scroll function by copy and pasting the lines after the LazyColumn() statement over and over