Build a metroUI page
metroPage(..., title = NULL, allow_loading = FALSE)
... | Any element. They are inserted in a grid. Use the shiny fluidRow function to create a row and insert metroUiCol inside. The maximum with is 12 (3 columns or lenght 4, 4 columns of lenght 3, ...). |
---|---|
title | Page title. |
allow_loading | Whether to allow loading before display the app content. FALSE by default. |
if(interactive()){ library(shiny) library(shinyMetroUi) shiny::shinyApp( ui = metroPage(), server = function(input, output) {} ) }