| gov_list | R Documentation |
Gov List function
gov_list(list, style = "none")
list |
vector of list |
style |
options: "none", "bullet", "number". defaults to "none" |
Other Govstyle text types:
date_Input(),
heading_text(),
input_field(),
text_Input(),
text_area_Input(),
word_count()
ui <- shiny::fluidPage(
shinyGovstyle::header(
org_name = "Example",
service_name = "User Examples"
),
shinyGovstyle::banner(
inputId = "banner", type = "beta", 'This is a new service'
),
shinyGovstyle::gov_layout(
size = "two-thirds",
shinyGovstyle::heading_text("gov_list", size = "s"),
shinyGovstyle::gov_text("List:"),
gov_list(list = c("a", "b", "c")),
shinyGovstyle::gov_text("Bulleted list:"),
gov_list(list = c("a", "b", "c"), style = "bullet"),
shinyGovstyle::gov_text("Numbered list:"),
gov_list(list = c("one", "two", "three"), style = "number")
)
)
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.