We just launched Compose Examples featuring over 150+ components! Check it out →

SplitCheckboxButton

Android

Component in Wear Material 3 Compose

The Wear Material [SplitCheckboxButton] offers slots and a specific layout for a label and secondaryLabel. The secondaryLabel is optional. The items are laid out with a column containing the two label slots and a Checkbox at the end.

The [SplitCheckboxButton] is Stadium shaped. The label should take no more than 3 lines of text. The secondary label should take no more than 2 lines of text. With localisation and/or large font sizes, the [SplitCheckboxButton] height adjusts to accommodate the contents. The label and secondary label are start aligned by default.

A [SplitCheckboxButton] has two tappable areas, one tap area for the labels and another for the checkbox. The [onContainerClick] listener will be associated with the main body of the [SplitCheckboxButton] and the [onCheckedChange] listener associated with the checkbox area only.

Last updated:

Installation

dependencies {
   implementation("androidx.wear.compose:compose-material3:1.0.0-alpha24")
}

Overloads

@Composable
fun SplitCheckboxButton(
    checked: Boolean,
    onCheckedChange: (Boolean) -> Unit,
    toggleContentDescription: String?,
    onContainerClick: () -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
    shape: Shape = CheckboxButtonDefaults.splitCheckboxButtonShape,
    colors: SplitCheckboxButtonColors = CheckboxButtonDefaults.splitCheckboxButtonColors(),
    toggleInteractionSource: MutableInteractionSource? = null,
    containerInteractionSource: MutableInteractionSource? = null,
    containerClickLabel: String? = null,
    contentPadding: PaddingValues = CheckboxButtonDefaults.ContentPadding,
    secondaryLabel: @Composable (RowScope.() -> Unit)? = null,
    label: @Composable RowScope.() -> Unit
)

Parameters

namedescription
checkedBoolean flag indicating whether this button is currently checked.
onCheckedChangeCallback to be invoked when this buttons checked status is changed.
toggleContentDescriptionThe content description for the checkbox control part of the component.
onContainerClickClick listener called when the user clicks the main body of the button, the area behind the labels.
modifierModifier to be applied to the button.
enabledControls the enabled state of the button. When false, this button will not be clickable.
shapeDefines the button's shape. It is strongly recommended to use the default as this shape is a key characteristic of the Wear Material Theme.
colors[SplitCheckboxButtonColors] that will be used to resolve the background and content color for this button in different states.
toggleInteractionSourcean optional hoisted [MutableInteractionSource] for observing and emitting [Interaction]s for this button's "toggleable" tap area. You can use this to change the button's appearance or preview the button in different states. Note that if null is provided, interactions will still happen internally.
containerInteractionSourcean optional hoisted [MutableInteractionSource] for observing and emitting [Interaction]s for this button's main body "clickable" tap area. You can use this to change the button's appearance or preview the button in different states. Note that if null is provided, interactions will still happen internally.
containerClickLabelOptional click label on the main body of the button for accessibility.
contentPaddingThe spacing values to apply internally between the container and the content.
secondaryLabelA slot for providing the button's secondary label. The contents are expected to be "start" aligned.
labelA slot for providing the button's main label. The contents are expected to be text which is "start" aligned.

Code Example

SplitCheckboxButtonSample

@Composable
fun SplitCheckboxButtonSample() {
    var checked by remember { mutableStateOf(true) }
    SplitCheckboxButton(
        label = { Text("Split Checkbox Button", maxLines = 3, overflow = TextOverflow.Ellipsis) },
        checked = checked,
        onCheckedChange = { checked = it },
        toggleContentDescription = "Split Checkbox Button Sample",
        onContainerClick = {
            /* Do something */
        },
        containerClickLabel = "click",
        enabled = true,
    )
}
by @alexstyl