Add a column
bulmaColumns(
...,
gapless = FALSE,
centered = FALSE,
multiline = FALSE,
mobile = FALSE,
tablet = FALSE,
desktop = FALSE
)
any element.
if TRUE
remove gaps between columns.
to center columns.
to create a flexible, centered list.
set to force columns on device.
if(interactive()){
ui <- bulmaPage(
bulmaContainer(
bulmaColumns(
bulmaColumn(
bulmaTitle("2 columns")
),
bulmaColumn(
plotOutput("plot")
)
)
)
)
server <- function(input, output){
output$plot <- renderPlot({
plot(1:20, rnorm(20), type = "l")
})
}
shiny::shinyApp(ui, server)
}