Closed MadhulikaTanuboddi closed 3 years ago
Thanks! Here's a more minimal repex:
library(shiny)
ui <- fluidPage(
theme = bs_theme(bootswatch = "sketchy"),
checkboxGroupInput("x", "Choices", c("a", "b")),
radioButtons("y", "Choices", c("c", "d"))
)
server <- function(input, output, session) {
observe({
print(input$x)
print(input$y)
})
}
shinyApp(ui, server)
@cpsievert : I noticed on Windows - Edge browser, checkboxes and radio buttons are not shown. This could be due to the Edge browser version I am using with parallels VM.
Appears this isn't an issue with modern versions of Edge, so let's not worry about it
This issue has been automatically locked. If you have found a related problem, please open a new issue (with a reproducible example or feature request) and link to this issue. :raising_hand: Need help? Connect with us on Discord or Posit Community.
Note: This issue is seen on all the platforms