ButtonDebugger

@Composable
fun ButtonDebugger(onClick: () -> Unit, content: @Composable RowScope.() -> Unit)

This function displays the button debugger.

Parameters

onClick

The action to be performed when the button is clicked.

content

The content to be displayed on the button.

Example usage:

ButtonDebugger(
onClick = { /* action to perform on button click */},
content = {
Text("Button")
}
)