shinydashboardPlus (version 0.7.0)

loadingState: AdminLTE2 loading state element

Description

When a section is still work in progress or a computation is running

Usage

loadingState()

Arguments

Examples

Run this code
# NOT RUN {
if (interactive()) {
 library(shiny)
 library(shinydashboard)
 shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(
     box(
      title = "loading spinner",
      loadingState()
      )
    ),
    title = "Loading State"
  ),
  server = function(input, output) { }
 )
}

# }

Run the code above in your browser using DataLab