header | R Documentation |
This function create a header banner. For use at top of the screen
header(
main_text,
secondary_text,
logo = NULL,
main_link = "#",
secondary_link = "#",
logo_width = 36,
logo_height = 32
)
main_text |
Main text that goes in the header |
secondary_text |
Secondary header to supplement the main text |
logo |
Add a link to a logo which will apply in the header. Use crown to use the crown svg version on gov uk. |
main_link |
Add a link for clicking on main text |
secondary_link |
Add a link for clicking on secondary header. |
logo_width |
Change the logo size width css to improve fit |
logo_height |
Change the logo size height css to improve fit |
a header html shiny object
if (interactive()) {
ui <- fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png")
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.