Learn R Programming

shinyGovstyle (version 0.1.0)

tag_Input: Tag Function

Description

This function creates a tag

Usage

tag_Input(inputId, text, colour = "navy")

Value

a tag html shiny object.

Arguments

inputId

The id to access the tag

text

The text in the tag

colour

The colour of the tag. Default is navy. Other options are grey, green, turquoise, blue, purple, pink, red, orange and yellow

Examples

Run this code
if (interactive()) {
  ui <- fluidPage(
    shinyGovstyle::header(
      main_text = "Example",
      secondary_text = "User Examples",
      logo="shinyGovstyle/images/moj_logo.png"),
    shinyGovstyle::gov_layout(size = "two-thirds",
      shinyGovstyle::tag_Input("tag1", "Complete"),
      shinyGovstyle::tag_Input("tag2", "Incomplete", "red")),
    shinyGovstyle::footer(full = TRUE)
  )

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

Run the code above in your browser using DataLab