bulmaSteps(..., size = NULL)

Arguments

...

Slot for bulmaStepItem.

size

Global size : small, medium and large.

Author

David Granjon, dgranjon@ymail.com

Examples

if (interactive()) {
 library(shiny)

 ui <- bulmaPage(
  bulmaContainer(
   bulmaSteps(
    size = NULL,
    bulmaStepItem(
      color = "success", completed = TRUE, active = FALSE,
      bulmaStepDetail(
        color = NULL, completed = FALSE, title = "Step 1", marker = 1,
        "This is the first step of the process."
      )
    ),
    bulmaStepItem(
      color = NULL, completed = FALSE, active = FALSE,
      bulmaStepDetail(
        color = NULL, completed = FALSE, title = "Step 2", marker = NULL,
        "This is the second step. You get here once you have completed the first step."
      )
    ),
    bulmaStepItem(
      color = NULL, completed = FALSE, active = FALSE,
      bulmaStepDetail(
        color = NULL, completed = FALSE, title = "Step 3", marker = 3,
        "This is the third step. One more step before the end."
      )
    ),
    bulmaStepItem(
      color = NULL, completed = FALSE, active = TRUE,
      bulmaStepDetail(
        color = NULL, completed = FALSE, title = "Step 4", marker = NULL,
        "Final step. You have completed all the previous steps and end the process."
      )
    )
    )
  )
 )

 server <- function(input, output, session) {

 }

 shinyApp(ui = ui, server = server)

}