Skip to content

Instantly share code, notes, and snippets.

@slopp
Created March 15, 2017 18:50
Show Gist options
  • Save slopp/d7ec8e5e55426d403a46a98dff302d81 to your computer and use it in GitHub Desktop.
Save slopp/d7ec8e5e55426d403a46a98dff302d81 to your computer and use it in GitHub Desktop.
library(shiny)
ui <- fluidPage(
sliderInput('x', "x", min = 0, max = 10, value = 0),
actionButton('go', 'Go')
)
server <- function(input, output, session) {
observeEvent(input$go, {
validate(
need(input$x > 5, message = "I'll never be seen!")
)
showNotification(paste0("Good job ", input$x, " > 5. Now we do something cool!" ))
})
}
shinyApp(ui = ui, server = server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment