When to use it
Use for compact persistent application status. Do not replace system status bars or navigation chrome.
Present compact textual application status with optional trailing content.
Native example
Use for compact persistent application status. Do not replace system status bars or navigation chrome.
LumenStatusBar(
message = "All changes saved",
tone = LumenMetricTone.Success
)Reference
The primary shared and platform-specific options exposed by LumenStatusBar.
| API | Values or type | Default | Description |
|---|---|---|---|
| message | String | Required | Provides the textual status. |
| tone | neutral · brand · accent · success · warning · danger | neutral | Selects the semantic dot color. |
| trailing | (@Composable () -> Unit)? | null | Provides optional trailing content. |
Native behavior
Use for compact persistent application status. Do not replace system status bars or navigation chrome.
The visible status dot is decorative; the message carries status meaning in text. Trailing controls retain independent semantics.
Shared component