Add a container to divide your page into sections

bulmaSection(..., container = TRUE, size = NULL)

Arguments

...

any element.

container

If TRUE wraps a bulmaContainer as a children of the section.

size

change the spacing, takes medium or large.

Author

John Coene, jcoenep@gmail.com

Examples

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) {}
)
}