useLoaders {standby} | R Documentation |
CSS Loaders
Description
Simple CSS loaders
Usage
useLoaders()
loaders(uiOutput, type = "default", style = NULL, text = NULL)
Arguments
uiOutput |
An output element to be wrapped within a loader. |
type |
The type of loader to use. Visit https://css-loader.raphaelfabeni.com/ for details.
|
style |
Custom styling for the loaders. |
text |
Custom text. Available only for the following types:
|
Value
None
Functions
-
useLoaders
: Dependencies to include in your UI. -
loaders
: Display loading animation.
Examples
if (interactive()) {
library(shiny)
shinyApp(
ui = fluidPage(
useLoaders(),
actionButton("render", "Render"),
loaders(uiOutput = plotOutput("plot"),
type = "default",
style = "half",
text = "Loading...")
),
server = function(input, output) {
output$plot <- renderPlot({
input$render
Sys.sleep(3)
hist(mtcars$mpg)
})
}
)
}
[Package standby version 0.1.0 Index]