Just noticed that with v0.2.0 the use_steward() no longer has an animated background and instead returns all black. You can see the effect when using the reprex from your website:
library(shiny)
library(waiter)
ui <- fluidPage(
use_waiter(),
use_steward(),
h3("Content you will only see after loading screen has disappeared"),
waiter_show_on_load(spin_fading_circles())
)
server <- function(input, output, session){
Sys.sleep(10) # do something that takes time
waiter_hide()
}
shinyApp(ui, server)
Hi John, very useful R package you have here!
Just noticed that with v0.2.0 the use_steward() no longer has an animated background and instead returns all black. You can see the effect when using the reprex from your website: