Build a Metro column

metroCol(..., width = NULL, offset = NULL)

Arguments

...

Any UI element.

width

Column width. Between 1 and 12.

offset

Column offset (shift). NULL by default.

Examples

if(interactive()){ library(shiny) library(shinyMetroUi) shiny::shinyApp( ui = metroPage( fluidRow( metroCol(width = 4, 1), metroCol(width = 4, 2), metroCol(width = 4, 3) ) ), server = function(input, output) {} ) }