dashboardBody {nextGenShinyApps} | R Documentation |
Create a simple body containing a header and a content for the main body
dashboardBody(header, ...)
header |
OPTIONAL. Items to display in the header section (use the titlePanel() function to set this property). |
... |
The elements to include within the body of the modal |
An HTML of the body of the page
Endeavor to use as standalone and not within the fluidPage, as this function it already called within fluidPage
if (interactive()) {
dashboardBody(
header = titlePanel(
left = "Sample nextGenShinyApps Title",
right = shiny::icon("user")
),
"obi's preferred main body"
)
}