tabler_footer: Create the Tabler footer wrapper

Description Usage Arguments Value Examples

View source: R/tabler.R

Description

Create the Tabler footer wrapper

Usage

1
tabler_footer(left = NULL, right = NULL)

Arguments

left

Left content.

right

Right content.

Value

An HTML tag containing the footer elements.

Examples

 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)
}

DivadNojnarg/outstanding-shiny-ui-code documentation built on Nov. 2, 2021, 12:03 p.m.