Bug in shinyWidgets switchInput

These two should not be rendering in the same size. Is there a bug? Any known workaround?

library(shiny)
library(shinyWidgets)

ui <- fluidPage(  
  switchInput(inputId = "aa", value= FALSE, size = 'mini'),
  switchInput(inputId = "bb", value= FALSE,size = 'large')
)

server <- function(input, output, session) {
}

shinyApp(ui, server)

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.