We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproducible example below; read documentation, but can't find a way to turn off loadingState().
loadingState()
Expected: after 10 secs, spinner will fade away.
Outcome: plot renders after 10 secs, but spinner still shows
if (interactive()) { library(shiny) library(shinydashboard) library(shinydashboardPlus) shinyApp( ui = dashboardPage( dashboardHeader(), dashboardSidebar(), dashboardBody( box( title = "loading spinner", loadingState(), plotOutput("plot2") ) ), title = "Loading State" ), server = function(input, output) { output$plot2 <- renderPlot({ Sys.sleep(10) plot(iris) }) } ) }
The text was updated successfully, but these errors were encountered:
This function is useless for some reasons:
Expect this to be deleted in a near release
Sorry, something went wrong.
Noted; thanks.
No branches or pull requests
Reproducible example below; read documentation, but can't find a way to turn off
loadingState()
.Expected: after 10 secs, spinner will fade away.
Outcome: plot renders after 10 secs, but spinner still shows
The text was updated successfully, but these errors were encountered: