titlePanel {nextGenShinyApps} | R Documentation |
Title panel for the header of the application
Description
Used to embed the header within the body of the application
Usage
titlePanel(left = "Sample Tile", right = NULL, link = "#")
Arguments
left |
The title text for the header |
right |
Content to include on the top right corner |
link |
Hyperlink to navigate when clicked |
Value
An HTML containing elements to insert in a title
Examples
if (interactive()) {
titlePanel(
left = "Sample App Title",
right = shiny::div("Image/logo", shiny::icon("trash"))
)
}
[Package nextGenShinyApps version 2.1 Index]