Create an animated loading spinner
UIkitSpinner(ratio = NULL)
ratio | Relative spinner size. If 3, the spinner will be 3 times bigger than in the normal case. |
---|
if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitSpinner(), UIkitSpinner(ratio = 3), UIkitSpinner(ratio = 5) ), server = function(input, output) {} ) }