Description Usage Arguments Examples
Functional component for creating a new app container. Use page_ui
,
to define individual pages.
1 |
... |
Shiny UI content |
class |
optional css classes to apply to the container |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | if (interactive()) {
library(shiny)
library(iceComponents)
ui <- tagList(
use_iceComponents(),
container(
class = "dark-theme",
tags$h1("My Application")
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.