Search code examples
android-jetpack-composeandroid-jetpack-compose-material3

Can't use Text Composable in Button of Jetpack Compose


I'm new to Jetpack Compose. I follow tutorial from docs. But unfortunately, I can't use following code.

Button(onClick = {

        }) {
            Text(text = "Hello")
        }

error is

@Composable invocations can only happen from the context of a @Composable function.

enter image description here. enter image description here.

I tried every possible ways to fix that error. Thanks for your time.

I've already tried every code snippets from docs but nothing is working.


Solution

  • I found the solution. Simply disable the K2 Kotlin mode in the settings. img