ProgressOutput
Progress bar output widget for displaying completion status.
Signature
def ProgressOutput(
current: float = 50,
total: float = 100,
text: str = '',
full_width: bool = False
)
Parameters
Name | Description | Type | Default |
---|---|---|---|
current | The current progress value. | float | 50 |
total | The total value representing 100% progress. | float | 100 |
text | Text displayed alongside the progress bar. | str | '' |
full_width | Whether the progress bar should take up the full width of its container. | bool | False |