View source: R/dashboardPage.R
argonDashPage | R Documentation |
Build an argon dashboard page
argonDashPage(
title = NULL,
description = NULL,
author = NULL,
navbar = NULL,
sidebar = NULL,
header = NULL,
body = NULL,
footer = NULL
)
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. |
David Granjon, dgranjon@ymail.com
if(interactive()){
library(shiny)
library(argonDash)
shiny::shinyApp(
ui = argonDashPage(),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.