add_ui_footer: Add UI elements to dashboard footer section

View source: R/ui_helpers.R

add_ui_footerR Documentation

Description

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

Usage

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

See Also

bs4Dash:bs4DashFooter()

periscope2:add_ui_left_sidebar()

periscope2:add_ui_header()

periscope2:add_ui_body()

periscope2:add_ui_right_sidebar()

periscope2:set_app_parameters()

periscope2:ui_tooltip()

periscope2:get_url_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)


periscope2 documentation built on April 15, 2025, 1:24 a.m.