Defines progress bars that indicate how far along a process is started

UIkitProgress(value, max)

Arguments

value

Current value.

max

Maximum value.

Examples

if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", sliderInput( inputId = "progressinput", label = "Increase the progress bar", value = 1, min = 0, max = 10 ), uiOutput("progress") ), server = function(input, output) { output$progress <- renderUI({ UIkitProgress( value = input$progressinput, max = 10 ) }) } ) }