Composable Function

DisableSelection

Disables text selection for its direct or indirect children.

DisableSelectionSample

@Composable
fun DisableSelectionSample() {
    SelectionContainer {
        Column {
            Text("Text 1")
            DisableSelection {
                Text("Text 2")
                Text("טקסט 3")
            }
            Text("Text 3")
        }
    }
}