Create a simple box with or without media https://bulma.io/documentation/elements/box/.

bulmaBox(...)

Arguments

...

Any element.

Note

It is lighter than a bulmaCard element.

Author

David Granjon, dgranjon@ymail.com

Examples

if (interactive()) {
 library(shiny)

 ui <- bulmaPage(
  bulmaContainer(
   bulmaColumns(
    bulmaColumn(
      width = 6,
      bulmaBox(
        bulmaBoxMedia(
          src = "https://bulma.io/images/placeholders/128x128.png",
          "test"
        )
      )
    ),
    bulmaDivider(vertical = TRUE),
    bulmaColumn(
      width = 6,
      bulmaBox(
        "test"
      )
     )
    )
  )
 )

 server <- function(input, output, session) {

 }

 shinyApp(ui = ui, server = server)
}