Create an animated loading spinner

UIkitSpinner(ratio = NULL)

Arguments

ratio

Relative spinner size. If 3, the spinner will be 3 times bigger than in the normal case.

Examples

if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitSpinner(), UIkitSpinner(ratio = 3), UIkitSpinner(ratio = 5) ), server = function(input, output) {} ) }