When to use it
Use for brief feedback after an operation. Application state owns presentation and timing so navigation and lifecycle behavior remain native.
Present app-controlled transient native feedback with semantic tone and optional actions.
Native example
Use for brief feedback after an operation. Application state owns presentation and timing so navigation and lifecycle behavior remain native.
<LumenToast
title="Changes saved"
description="The workspace is up to date."
variant="success"
onDismiss={dismissToast}
/>Reference
The primary shared and platform-specific options exposed by LumenToast.
| API | Values or type | Default | Description |
|---|---|---|---|
| title | String | Required | Provides concise feedback. |
| description | String? | nil | Adds short supporting context. |
| variant | default · destructive · success · warning | default | Selects semantic feedback tone. |
| action | Native action content | nil | Provides one optional recovery action. |
| onDismiss | Callback? | nil | Adds a labeled dismissal action. |
Native behavior
Use for brief feedback after an operation. Application state owns presentation and timing so navigation and lifecycle behavior remain native.
The toast announces concise feedback while optional action and dismissal controls keep independent native labels.
Shared component