R/correr_aplicacion.R

Defines functions correr_aplicacion

Documented in correr_aplicacion

#' Correr aplicacion CEMRepBoot
#'
#' @param launch.browser Determina si la aplicacion se corre en el navegador web por
#' defecto del usuario o si se usa el navegador de RStudio (en el caso que este disponible)
#'
#' @importFrom shiny tags tabPanel verbatimTextOutput fluidRow selectInput
#' @importFrom shiny radioButtons conditionalPanel downloadLink fileInput column textInput
#' @importFrom shiny actionButton checkboxInput onSessionEnded updateActionButton
#' @importFrom shiny observeEvent showModal tagList wellPanel NS moduleServer
#' @importFrom shiny downloadHandler showNotification
#' @export
correr_aplicacion = function(launch.browser = TRUE) {
  shiny::runApp(shiny::shinyApp(ui(), server), launch.browser = launch.browser)
}
tomicapretto/cemrepboot documentation built on Dec. 31, 2020, 8:43 a.m.