We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, In version 2.0.4.9000, the menu item arrow does not rotate when using shinydashboardPlus::dashboardPage() function.
Please see below for an example.
library(shiny) library(shinydashboard) library(shinydashboardPlus) header <- shinydashboard::dashboardHeader() sidebar <- shinydashboard::dashboardSidebar( sidebarMenu( id = "tabs", menuItem("Menu Item 1", icon = icon("calendar"), sliderInput( inputId = "slider1", label = "Dummy Label", min = 0, max = 10, step = 1, value = 5 ) ), menuItem("Menu Item 2", icon = icon("calendar"), sliderInput( inputId = "slider2", label = "Dummy Label", min = 0, max = 10, step = 1, value = 5 ) ) ) ) body <- shinydashboard::dashboardBody() shinyApp( ui = shinydashboard::dashboardPage(header, sidebar, body), server = function(input, output) { } )
vs
library(shiny) library(shinydashboard) library(shinydashboardPlus) header <- shinydashboard::dashboardHeader() sidebar <- shinydashboard::dashboardSidebar( sidebarMenu( id = "tabs", menuItem("Menu Item 1", icon = icon("calendar"), sliderInput( inputId = "slider1", label = "Dummy Label", min = 0, max = 10, step = 1, value = 5 ) ), menuItem("Menu Item 2", icon = icon("calendar"), sliderInput( inputId = "slider2", label = "Dummy Label", min = 0, max = 10, step = 1, value = 5 ) ) ) ) body <- shinydashboard::dashboardBody() shinyApp( ui = shinydashboardPlus::dashboardPage(header, sidebar, body), server = function(input, output) { } )
Thanks,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
In version 2.0.4.9000, the menu item arrow does not rotate when using shinydashboardPlus::dashboardPage() function.
Please see below for an example.
vs
Thanks,
The text was updated successfully, but these errors were encountered: