How can I totally delete the toggle button that hides and display sidebar in shiny dashboard?
## app.R ##
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(
collapsed = T
),
dashboardBody(
)
)
server <- function(input, output) { }
shinyApp(ui, server)