Description Usage Value See Also Examples
This function must be called from a Shiny app's UI in order for the
shinynotyf
function to work.
You can call use_shinynotyf()
from anywhere inside the UI.
1 |
Scripts that shinynotyf
requires that are automatically
inserted to the app's <head>
tag.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | if (interactive()) {
library(shiny)
library(shinynotyf)
shinyApp(
ui = fluidPage(
# Set up shinynotyf
use_shinynotyf(),
actionButton("btn", "Click me")
),
server = function(input, output) {
observeEvent(input$btn, {
# Show a simple notification
shinynotyf(message = "You did it!", type = "success")
})
}
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.