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)