---
title: "RemoteSplitRadioButton"
description: "The Wear Material SplitRadioButton offers two slots and shows the current selection state via a radio control."
type: "composable"
lastmod: "2026-09-24"
---
## API Reference

### RemoteSplitRadioButton

> Source set: Android

```kotlin
@Composable
public fun RemoteSplitRadioButton(
    selected: RemoteBoolean,
    onSelectionClick: Action,
    selectionContentDescription: RemoteString?,
    onContainerClick: Action,
    modifier: RemoteModifier = RemoteModifier,
    enabled: RemoteBoolean = true.rb,
    shape: RemoteShape = RemoteSplitRadioButtonDefaults.shape,
    colors: RemoteSplitRadioButtonColors = RemoteSplitRadioButtonDefaults.splitRadioButtonColors(),
    contentPadding: RemotePaddingValues = RemoteSplitRadioButtonDefaults.ContentPadding,
    secondaryLabel: @Composable @RemoteComposable (RemoteRowScope.() -> Unit)? = null,
    label: @Composable @RemoteComposable RemoteRowScope.() -> Unit,
)
```

The Wear Material SplitRadioButton offers two slots and shows the current selection state via a
radio control.

The [RemoteSplitRadioButton](/jetpack-compose/androidx.wear.compose.remote/remote-material3/composable-functions/RemoteSplitRadioButton/api) is essentially a `RemoteRow` with two split areas. The first area
containing `label` and optional `secondaryLabel` is clickable and triggers `onContainerClick`.
The second area contains a radio selection control and triggers `onSelectionClick`.

#### Parameters

| | |
| --- | --- |
| selected | [RemoteBoolean](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBoolean) flag indicating whether this button is currently selected. |
| onSelectionClick | Action to be invoked when the selection control is clicked. |
| selectionContentDescription | Text used by accessibility services to describe what this selection control represents. |
| onContainerClick | Action to be invoked when the container area is clicked. |
| modifier | [RemoteModifier](/jetpack-compose/androidx.compose.remote/remote-creation-compose/interfaces/RemoteModifier) to be applied to the button. |
| enabled | Controls the enabled state of the button. When `false`, this button will appear visually disabled and will not be clickable. Note that only constant values are currently supported for [enabled](/jetpack-compose/androidx.compose.remote/remote-creation-compose/properties/enabled) for click handling. |
| shape | Defines the button's shape. It is recommended to use the default shape. |
| colors | [RemoteSplitRadioButtonColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteSplitRadioButtonColors) that will be used to resolve the container and content colors for this button in different states. |
| contentPadding | The spacing values to apply internally between the container and the content. |
| secondaryLabel | A slot for a secondary label, displayed below the [label](/jetpack-compose/androidx.compose.material3/material3/components/Label). |
| label | A slot for the main label content. |

## Code Examples

### RemoteSplitRadioButtonSample

```kotlin
@Sampled
@Composable
@WearPreviewDevices
@PreviewWrapper(RemoteComponentPreviewWrapper::class)
fun RemoteSplitRadioButtonSample(modifier: RemoteModifier = RemoteModifier) {
    val selected = rememberMutableRemoteBoolean(true)

    RemoteSplitRadioButton(
        selected = selected,
        onSelectionClick = valueChange(selected, !selected),
        selectionContentDescription = "Split Radio".rs,
        onContainerClick = valueChange(selected, !selected),
        modifier = modifier,
        label = { RemoteText("Split Radio".rs) },
    )
}
```
