I used shinydashboard to create my application. I would like to hide a third-party user by default in a desktop environment (e.g. windows), but not disable it. On the mobile device, the sidebar is hidden by default. I think I need to change the css class, but don't know how to do it.
Thanks for any suggestions.
These are my game codes:
library(shiny) library(shinydashboard) ui <- shinyUI(dashboardPage( dashboardHeader(), dashboardSidebar(), dashboardBody() )) server <- shinyServer(function(input, output, session) { }) shinyApp(ui = ui, server = server)
source share