Nothing
#' Label with Hint Function
#'
#' This function inserts a label and optional hint.
#' @param inputId The input slot that will be used to access the value
#' @param label Display label for the control, or `NULL` for no label
#' @param hint_input Display hint label for the control, or `NULL` for
#' no hint label
#' @return a label hint HTML shiny tag object
#' @family Govstyle feedback types
#' @export
#' @examples
#' ui <- shiny::fluidPage(
#' shinyGovstyle::header(
#' org_name = "Example",
#' service_name = "User Examples",
#' logo="shinyGovstyle/images/moj_logo.png"
#' ),
#' shinyGovstyle::gov_layout(
#' size = "two-thirds",
#' label_hint(
#' inputId = "label1",
#' label = "This is a label",
#' hint_input = "This is a hint"
#' )
#' ),
#' shinyGovstyle::footer(full = TRUE)
#' )
#'
#' server <- function(input, output, session) {}
#' if (interactive()) shinyApp(ui = ui, server = server)
label_hint <- function(
inputId, # nolint
label,
hint_input = NULL
) {
gov_label <- shiny::tags$div(
class = "govuk-form-group",
id = inputId,
shiny::tags$label(shiny::HTML(label), class = "govuk-label"),
shiny::tags$div(hint_input, class = "govuk-hint")
)
attachDependency(gov_label)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.