Description Usage Arguments Value Examples
Create the Tabler footer wrapper
1 | tabler_footer(left = NULL, right = NULL)
|
left |
Left content. |
right |
Right content. |
An HTML tag containing the footer elements.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | if (interactive()) {
library(shiny)
ui <- tabler_page(
tabler_body(
p("Hello World"),
footer = tabler_footer(
left = "Rstats, 2020",
right = a(href = "https://www.google.com", "More")
)
)
)
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.