modal.header {nextGenShinyApps} | R Documentation |
Additional tab section for additional links
modal.header(...)
... |
The list of tabs to include |
An HTML containing elements of links to be inserted in the header of a page
if (interactive()) {
list1 <- list(
title = "Home", icon = shiny::icon("home"),
link = "https://google.com"
)
list2 <- list(
title = "Docs", icon = shiny::icon("folder"),
link = "https://obi.obianom.com"
)
modal.header(list(list1, list2))
}