#' The application User-Interface
#'
#' @param request Internal parameter for `{shiny}`.
#' @import shiny shinydashboard shinyWidgets ggplot2
#' @noRd
app_ui <- function(request) {
dashboardPage(
dashboardHeader(title = "ggVIZ"),
dashboardSidebar(disable = TRUE),
dashboardBody(
shinyjs::useShinyjs(),
fluidRow(
column(width = 4,
mod_import_data_ui("x"),
mod_vars_cont_fcts_ui("x"),
mod_gg_layers_ui("x")
),
column(width = 8,
mod_out_table_ui("x"),
mod_out_plot_ui("x"),
mod_ace_editor_ui("x"),
mod_download_plot_ui("x")
)
)
)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.