Skip to main content
161

Search Lumen

Find components, APIs, guides, and recipes.

GitHub
Android docs
FeedbackAndroid

Progress

Show normalized determinate progress with native accessibility semantics.

Public APILumenProgressAndroid / Compose

Native example

Use Progress

Use only for determinate progress. Values are clamped into the valid range; invalid maximum values fall back to 100.

Progress rendered in the Android phone emulator Lumen playground
Verified runtime captureAndroid phone emulator
kotlin
LumenProgress(
    value = 72f,
    label = "Profile completion"
)

Reference

Public API

The primary shared and platform-specific options exposed by LumenProgress.

APIValues or typeDefaultDescription
valueFloat0Provides the current determinate value.
maxFloat100Provides the positive maximum value.
labelString?nilNames the progress operation.
modifierNative presentation APIAdjusts native layout or optional indicator color.

Native behavior

Design and accessibility

When to use it

Use only for determinate progress. Values are clamped into the valid range; invalid maximum values fall back to 100.

Accessibility

Progress exposes normalized minimum, maximum, and current values. Provide a label when surrounding text does not name the operation.

Shared component

Available on other platforms

React NativeApple / SwiftUI
Android docsCompose module