Description Usage Arguments Examples
Create dashboard page
1 2 |
title |
Title to display in browser's title bar. |
header |
Dashboard header produced by |
sidebar |
Dashboard sidebar produced by |
body |
Dashboard body produced by |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | if (interactive()) {
library(shiny)
library(shinymd)
ui = md_page(
header = md_header(),
sidebar = md_sidebar(),
body = md_body()
)
server = function(input, output) {}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.