R/metroCol.R
metroCol.Rd
Build a Metro column
metroCol(..., width = NULL, offset = NULL)
Any UI element.
Column width. Between 1 and 12.
Column offset (shift). NULL by default.
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) {} ) }