Hello there,
I have been testing the library shinyWidgets in an application that uses bslib to customize the ui. If I use bootstrap version = 4 the justified parameter of radioGroupButtons does not work. A similar problem is observed for checkboxGroupButtons.
Here is an example :
ui<-shiny::fluidPage(
theme = bslib::bs_theme(version = 4),
shinyWidgets::radioGroupButtons(
inputId = "Id066",
label = "Label",
choices = c("A", "B", "C"),
justified = TRUE,
status = "danger"
)
)
server <- function(input, output, session) { }
shiny::shinyApp(ui = ui, server = server)
Many thanks in advance
Hello there,
I have been testing the library shinyWidgets in an application that uses bslib to customize the ui. If I use bootstrap version = 4 the justified parameter of radioGroupButtons does not work. A similar problem is observed for checkboxGroupButtons.
Here is an example :
ui<-shiny::fluidPage(
theme = bslib::bs_theme(version = 4),
shinyWidgets::radioGroupButtons(
inputId = "Id066",
label = "Label",
choices = c("A", "B", "C"),
justified = TRUE,
status = "danger"
)
)
server <- function(input, output, session) { }
shiny::shinyApp(ui = ui, server = server)
Many thanks in advance