Skip to content

justified parameter of radioGroupButtons does not work with bslib #423

@mhanf

Description

@mhanf

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions