Nothing
#' Get all available Shiny app examples
#'
#' @return A character vector.
#' @export
get_examples <- function() {
list.dirs(
system.file("examples", package = "shinyNextUI"),
full.names = FALSE,
recursive = FALSE
)
}
#' Run shinyNextUI example
#'
#' @param name Use \link{get_examples} to get
#' the available examples.
#'
#' @return Runs a Shiny app.
#' @export
run_example <- function(name) {
shinyAppDir(
system.file(
sprintf("examples/%s", name),
package = "shinyNextUI"
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.