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 onPress={save}>Save</LumenButton>
<LumenButton intent="secondary" onPress={cancel}>Cancel</LumenButton>
</LumenButtonGroup>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