argonDashPage: Create a Boostrap 4 dashboard page

Description Usage Arguments Author(s) Examples

View source: R/dashboardPage.R

Description

Build an argon dashboard page

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
argonDashPage(
  title = NULL,
  description = NULL,
  author = NULL,
  navbar = NULL,
  sidebar = NULL,
  header = NULL,
  body = NULL,
  footer = NULL
)

Arguments

title

App title.

description

Dashboard purpose.

author

Dashboard author.

navbar

Bootstrap 4 dashboard navbar.

sidebar

Bootstrap 4 dashboard main sidebar.

header

Bootstrap 4 dashboard header (below the navbar). Useful to hightlight elements or print a message.

body

Bootstrap 4 dashboard body wrapper.

footer

Bootstrap 4 dashboard footer.

Author(s)

David Granjon, dgranjon@ymail.com

Examples

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

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

argonDash documentation built on Dec. 1, 2019, 1:08 a.m.