Navigate at the top of the web page
UIkitTotop()
if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitCard( title = "My card", badge = "test", hover = TRUE, horizontal = TRUE, UIkitCardMedia( src = "https://getuikit.com/docs/images/light.jpg", horizontal = TRUE, position = "left" ), body = "This is the body" ), UIkitCard( title = "My card", badge = "test", hover = TRUE, horizontal = FALSE, header = "This is the header", style = "secondary", UIkitCardMedia( src = "https://getuikit.com/docs/images/light.jpg", horizontal = TRUE, position = "left" ), body = "This is the body", footer = "This is the footer" ), UIkitCard( title = "My card", badge = "test", hover = TRUE, horizontal = TRUE, UIkitCardMedia( src = "https://getuikit.com/docs/images/light.jpg", horizontal = TRUE, position = "left" ), body = "This is the body" ), UIkitCard( title = "My card", badge = "test", hover = TRUE, horizontal = FALSE, header = "This is the header", style = "secondary", UIkitCardMedia( src = "https://getuikit.com/docs/images/light.jpg", horizontal = TRUE, position = "left" ), body = "This is the body", footer = "This is the footer" ), UIkitTotop() ), server = function(input, output) {} ) }