gov_layout {shinyGovstyle} | R Documentation |
Page Layout Function
Description
This function loads the page layout, This doesn't work as well as the 'gov_main_layout' and associated functions. This is being kept for now as a simpler version where grids are not needed.
Usage
gov_layout(..., inputID = "main", size = "full")
Arguments
... |
include the components of the UI that you want within the main page. |
inputID |
ID of the main div. Defaults to "main" |
size |
Layout of the page. Optional are full, one-half, two-thirds, one-third and one-quarter. Defaults to "full" |
Value
a html shiny layout div
Examples
if (interactive()) {
ui <- fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"),
shinyGovstyle::gov_layout(size = "full",
shinyGovstyle::panel_output(
inputId = "panel1",
main_text = "Application Complete",
sub_text = "Thank you for submitting your application.
Your reference is xvsiq")
),
shinyGovstyle::footer(full = TRUE)
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}
[Package shinyGovstyle version 0.0.8 Index]