Add a section tag.
bulmaHero(..., color = NULL, size = NULL, bold = FALSE, fullheight = FALSE)
bulmaHeroHead(...)
bulmaHeroBody(..., container = TRUE)
bulmaHeroFoot(...)
any element.
hero color.
hero size takes NULL
, medium
or large
.
set to TRUE
to generate a subtle gradient.
set to TRUE
to set hero to 100vh
.
If TRUE
wraps a bulmaContainer
as a children of the section.
if(interactive()){
library(shiny)
ui <- bulmaPage(
bulmaHero(
fullheight = TRUE,
color = "danger",
bulmaHeroBody(
bulmaContainer(
bulmaTitle("Hello Bulma*"),
bulmaSubtitle("shinybulma*")
)
)
)
)
server <- function(input, output){}
shinyApp(ui, server)
}