也许你想要类似的东西:
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
ui <- fluidPage( navbarPage(title = "AA Tester", windowTitle ="AA Tester", id="tabactive",
tabPanel("Explore Funds",icon = icon("table"),tags$body(class="skin-blue sidebar-mini control-sidebar-open",
dashboardPagePlus(sidebar_fullCollapse=TRUE,
dashboardHeaderPlus(disable = T,
enable_rightsidebar = TRUE,
rightSidebarIcon = "gears"
),
dashboardSidebar(),
dashboardBody(
),
rightsidebar = rightSidebar(
background = "dark",
rightSidebarTabContent(
id = 1,
title = "Controllers",
icon = "desktop",
active = TRUE
))
))),
tabPanel("Holdings Analysis",icon = icon("line-chart"))))
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)