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

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
| Name | Type | Default | Description |
|---|---|---|---|
value | float | 0.0 | Progress percentage, in range [0, 1]. |
indeterminate | bool | False | Whether the progress is indeterminate (looping animation). |
Signals
N/A