#' loading_screen UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd
#'
#' @importFrom shiny NS tagList
mod_loading_screen_ui <- function(id){
ns <- NS(id)
tagList(
tags$div(id="loader"),
tags$div(`class`="loader-section section-left"),
tags$div(`class`="loader-section section-right"))
}
#' loading_screen Server Function
#'
#' @noRd
mod_loading_screen_server <- function(input, output, session){
ns <- session$ns
}
## To be copied in the UI
# mod_loading_screen_ui('loading_screen_ui_1')
## To be copied in the server
# callModule(mod_loading_screen_server, 'loading_screen_ui_1')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.