Compose Unstyled 2.0 is out! Check the official announcement blog ->
Composable Function

RemoteIconButton

Wear Material RemoteIconButton is a circular, icon-only button with transparent background and no border.

RemoteIconButtonSimpleSample

@Composable
@WearPreviewDevices
@PreviewWrapper(RemoteComponentPreviewWrapper::class)
fun RemoteIconButtonSimpleSample(modifier: RemoteModifier = RemoteModifier) {
    RemoteIconButton(testAction, modifier = modifier, colors = tonalColors) {
        RemoteIcon(imageVector = TestImageVectors.VolumeUp, contentDescription = null)
    }
}

Last updated: