Add footer
bulmaFooter(..., container = TRUE, centered = TRUE)
any element.
If TRUE
wraps a bulmaContainer
as a children of the section.
wheter to center the text.
if(interactive()){
library(shiny)
ui <- bulmaPage(
bulmaHero(
fullheight = TRUE,
color = "primary",
bulmaHeroHead(
bulmaContainer(
bulmaTitle("Hero Title")
)
),
bulmaHeroHead(
bulmaContainer(
bulmaSubtitle(
"Some content"
)
)
),
bulmaHeroFoot(
bulmaContainer(
"The footer"
)
)
)
)
server <- function(input, output){}
shinyApp(ui, server)
}