When to use it
Use only for determinate progress. Values are clamped into the valid range; invalid maximum values fall back to 100.
Show normalized determinate progress with native accessibility semantics.
Native example
Use only for determinate progress. Values are clamped into the valid range; invalid maximum values fall back to 100.
<LumenProgress
value={72}
label="Profile completion"
/>Reference
The primary shared and platform-specific options exposed by LumenProgress.
| API | Values or type | Default | Description |
|---|---|---|---|
| value | number | 0 | Provides the current determinate value. |
| max | number | 100 | Provides the positive maximum value. |
| label | String? | nil | Names the progress operation. |
| color / style | Native presentation API | — | Adjusts native layout or optional indicator color. |
Native behavior
Use only for determinate progress. Values are clamped into the valid range; invalid maximum values fall back to 100.
Progress exposes normalized minimum, maximum, and current values. Provide a label when surrounding text does not name the operation.
Shared component