banner: Banner Function

View source: R/banner.R

bannerR Documentation

Banner Function

Description

This function create a detail component that you can click for further details.

Usage

banner(inputId, type, label)

Arguments

inputId

The input slot that will be used to access the value.

type

Main type of label e.g. alpha or beta. Can be any word.

label

test to display.

Value

a banner html shiny object

Examples

if (interactive()) {

  ui <- fluidPage(
    shinyGovstyle::header(
      main_text = "Example",
      secondary_text = "User Examples",
      logo="shinyGovstyle/images/moj_logo.png"),
    shinyGovstyle::banner(
      inputId = "banner", type = "beta", 'This is a new service')
  )

  server <- function(input, output, session) {}

  shinyApp(ui = ui, server = server)
}

shinyGovstyle documentation built on March 18, 2022, 7:24 p.m.