Hello All
Please help my adminlte_sidebar (fresh Package) seem not work entirely, in code below I see it only work for sidebar width, for others variable no change happen.
=================
if (interactive()) {
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
header = dashboardHeader(title = "My dashboard"),
sidebar = dashboardSidebar(
),
body = dashboardBody(
use_theme(create_theme(
adminlte_sidebar(
width = "400px",
light_bg = "red",
dark_hover_bg = "#bf431d",
dark_color = "#d8de83"
),
bs4dash_font(weight_bold = 900)
))
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}