ProgressBar: Progress bar

ProgressBarR Documentation

Progress bar

Description

Documentation: https://blueprintjs.com/docs/#core/components/progress-bar

Usage

ProgressBar(...)

Arguments

...

Component props and children. See the official Blueprint docs for details.

Value

Object with shiny.tag class suitable for use in the UI of a Shiny app.

Examples

library(shiny.blueprint)
library(shiny)

ui <- function(id) {
  ProgressBar(animate = TRUE)
}

server <- function(id) {
  moduleServer(id, function(input, output, session) {})
}

if (interactive()) shinyApp(ui("app"), function(input, output) server("app"))

shiny.blueprint documentation built on May 29, 2024, 11:29 a.m.