Skip to content

Progress Indicators

Progress indicators inform users about the status of ongoing processes, such as loading an app or submitting a form.

progress indicators

Usage

python
from material_ui.progress_indicators import CircularProgress, LinearProgress

spinner = CircularProgress()
spinner.value = 0.5
# ... work
spinner.value = 0.6
# ...
spinner.value = 1.0


LinearProgress(indeterminate=True)

API

Properties

NameTypeDefaultDescription
valuefloat0.0Progress percentage, in range [0, 1].
indeterminateboolFalseWhether the progress is indeterminate (looping animation).

Signals

N/A