Skip to contents

The progress() shows the progress of a process in a graphical way. To indicate the progress, the inside of the component is filled with a color.

A progress bar can be updated with progress_update().

See the official documention for progress indicator, for all the correct props.

Examples

progress(
  value = 50
)
progress(
  value = 50,
  `value-state` = "Success"
)
progress(
  value = 50,
  `value-state` = "Error",
  `display-value` = "Custom Display Value"
)