Builds application footer with given configurations and elements. It is called within "ui_footer.R". Check example application for detailed example

add_ui_footer(left = NULL, right = NULL, fixed = FALSE)

Arguments

left

Left side UI elements

right

Right side UI elements

fixed

Always show footer at page bottom regardless page scroll location (default = FALSE).

Value

list of both shiny UI elements and named footer properties

Shiny Usage

Call this function from program/ui_footer.R to set footer parameters

Examples

  library(shiny)
  library(bs4Dash)

  # Inside ui_footer.R
  # Left text
  left <- a(href   = "https://periscopeapps.org/",
            target = "_blank",
            "periscope2")
  # Right text
  right <- "2022"

  # -- Register Elements in the ORDER SHOWN in the UI
  add_ui_footer(left, right)