Description Usage Arguments Examples
Define a "page" region inside the main container
1 |
... |
Shiny UI content |
inputId |
an ID for the page (required) |
class |
apply css classes (optional) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | if (interactive()) {
library(shiny)
library(iceComponents)
ui <- tagList(
use_iceComponents(),
container(
class = "dark-theme",
page(
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.