| label_hint | R Documentation |
This function inserts a label and optional hint.
label_hint(inputId, label, hint_input = NULL)
inputId |
The input slot that will be used to access the value |
label |
Display label for the control, or |
hint_input |
Display hint label for the control, or |
a label hint HTML shiny tag object
Other Govstyle feedback types:
details(),
gov_summary(),
insert_text(),
noti_banner(),
panel_output(),
tag_Input(),
value_box(),
warning_text()
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.