metroPage: Create a Metro 4 page

Description Usage Arguments Author(s) Examples

View source: R/metroPage.R

Description

Build a metroUI page

Usage

1
metroPage(..., title = NULL, allow_loading = FALSE)

Arguments

...

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.

Author(s)

David Granjon, dgranjon@ymail.com

Examples

1
2
3
4
5
6
7
8
9
if(interactive()){
 library(shiny)
 library(shinyMetroUi)

 shiny::shinyApp(
   ui = metroPage(),
   server = function(input, output) {}
 )
}

RinteRface/shinyMetroUi documentation built on Dec. 31, 2019, 8:47 a.m.