Create a simple box with or without media https://bulma.io/documentation/elements/box/.
bulmaBox(...)
Any element.
It is lighter than a bulmaCard element.
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)
}