I'm trying to figure out how to expand the notifications in R Shiny because right now they are cutting off longer error messages. Any suggestions?
library(shiny)
ui <- fluidPage(
actionButton("test", "Test")
)
server <- function(input, output, session) {
observeEvent(input$test, {
showNotification("You did it! Now make me wider", type = "message")
})
}
shinyApp(ui, server)