Define different styles for headings
UIkitHeading(title, style)
title | Heading content. |
---|---|
style | Heading style: "primary", "hero", "divider", "bullet" and "line". |
if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitGrid( child_width = "1-2", UIkitHeading( style = "primary", title = "Heading Primary" ), UIkitHeading( style = "hero", title = "Heading Hero" ) ), UIkitGrid( child_width = "1-2", UIkitHeading( style = "divider", title = "Heading Divider" ), UIkitHeading( style = "bullet", title = "Heading Bullet" ) ), UIkitGrid( child_width = "1-2", UIkitHeading( style = "line", title = "Heading Line" ) ) ), server = function(input, output) {} ) }