Progress

Description

A bar showing how far along a task is.

Usage

bc_progress(value, min = 0, max = 100, label = NULL, ...)

Arguments

Argument Description
value Number. How far along the task is, between min and max.
min, max Number. The ends of the range value is measured against.
label String. What the bar is measuring, for a screen reader. Pass NULL and an aria-labelledby in ... to point at visible text instead.
... Tag attributes and children, passed to htmltools::div(). Sizing is a caller's job: a skeleton has no dimensions of its own.

Value

A <div> tag.

Examples

bc_progress(66, label = "Upload progress")

bc_progress(3, max = 8, label = "Pulls audited")