Skip to content

Using unmerged tree

Devrath edited this page Mar 4, 2024 · 3 revisions

Code

@Composable
fun UsingUnMergedTreeDemo() {

    Button(
        modifier = Modifier.semantics { contentDescription = "our tag" },
        onClick = {}) {
        Text(text = "Hello")
        Text(text = "World")
    }

}

Print the hierarchy

Clone this wiki locally