When to use it
Use inside native wearable scrolling containers. Keep list state, selection, navigation, and rotary input in the application.
Compose a compact wearable row with flexible content slots.
Native example
Use inside native wearable scrolling containers. Keep list state, selection, navigation, and rotary input in the application.
@Composable
fun TimerHistoryRow() {
LumenWearListRow { TimerHistoryLabel() }
}Reference
The primary shared and platform-specific options exposed by LumenWearListRow.
| API | Values or type | Default | Description |
|---|---|---|---|
| leading | Optional native view slot | nil / EmptyView | Provides compact identity. |
| content | Native view slot | Required | Provides primary row content. |
| trailing | Optional native view slot | nil / EmptyView | Provides short status or actions. |
Native behavior
Use inside native wearable scrolling containers. Keep list state, selection, navigation, and rotary input in the application.
Preserves child actions and content in native traversal order without collapsing distinct controls.
Shared component