Well panels.
wellPanel(
radioButtons(
inputId = "id",
label = "Radio input",
choices = c(
"Choice 1",
"Choice 2"
)
)
)
Radio input
Choice
2
Shrink well padding.
wellPanel(
.style %>%
padding(1),
radioButtons(
inputId = "id",
label = "Radio input",
choices = c(
"Choice 1",
"Choice 2"
)
)
)
Radio input
Choice
2
Auto width.
wellPanel(
.style %>%
padding(1),
radioButtons(
inputId = "id",
label = "Radio input",
choices = c(
"Choice 1",
"Choice 2"
)
) %>%
width("auto")
)
Radio input
Choice
2