When to use it
Use for a small set of related actions. Do not use it for single selection; use Segmented control or Radio group instead.
Lay out a small set of related native actions horizontally or vertically.
Native example
Use for a small set of related actions. Do not use it for single selection; use Segmented control or Radio group instead.
LumenButtonGroup {
LumenButton(onClick = ::save) { Text("Save") }
LumenButton(onClick = ::cancel, intent = LumenButtonIntent.Secondary) { Text("Cancel") }
}Reference
The primary shared and platform-specific options exposed by LumenButtonGroup.
| API | Values or type | Default | Description |
|---|---|---|---|
| orientation | horizontal · vertical | horizontal | Controls action layout. |
| content | Native buttons | Required | Provides independently operable actions. |
Native behavior
Use for a small set of related actions. Do not use it for single selection; use Segmented control or Radio group instead.
The group contains each native button without combining action names or changing activation behavior.
Shared component