Add a container to divide your page into sections
bulmaSection(..., container = TRUE, size = NULL)
any element.
If TRUE
wraps a bulmaContainer
as a children of the section.
change the spacing, takes medium
or large
.
if(interactive()){
library(shiny)
shinyApp(
ui = bulmaPage(
bulmaSection(
size = "large",
bulmaContainer(
bulmaTitle("Section 1 title"),
bulmaSubtitle("Section 1 subtitle")
)
),
bulmaSection(
bulmaContainer(
bulmaTitle("Section 1 title"),
bulmaSubtitle("Section 1 subtitle")
)
)
),
server = function(input, output) {}
)
}