Skip to content

Instantly share code, notes, and snippets.

@cecilialee
Last active February 9, 2018 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecilialee/ff9e318ab7ef24ef5420929b209fa147 to your computer and use it in GitHub Desktop.
Save cecilialee/ff9e318ab7ef24ef5420929b209fa147 to your computer and use it in GitHub Desktop.
How to add a simple notification. #r #shiny
library(shiny)
shinyApp(
ui = fluidPage(
actionButton("show", "Show")
),
server = function(input, output) {
observeEvent(input$show, {
showNotification(
"Form Submitted",
duration = 1,
closeButton = input$close,
type = "default"
)
})
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment