I try to use Jetpack Compose in my existing project the problem is if I include @Preview
annotation it doesn't show me anything, just this
There is my code
@Preview
@Composable
fun test() {
Text(text = "HELLO")
}
What am I missing here?
UPD
I assume this issue somehow related to that fact that I added Compose to existing project, as if I try to create the project from the scratch it works perfectly.
In addition I would like to add the error screenshot