module_session_info {teal} | R Documentation |
teal
user session info module
Description
Module to display the user session info popup and to download a lockfile. Module is included
when running init()
but skipped when using module_teal
. Please be aware that session info
contains R session information, so multiple module's calls will share the same information.
Usage
ui_session_info(id)
srv_session_info(id)
Arguments
id |
( |
Value
NULL
invisibly
Examples in Shinylive
- example-1
Examples
ui <- fluidPage(
ui_session_info("session_info")
)
server <- function(input, output, session) {
srv_session_info("session_info")
}
if (interactive()) {
shinyApp(ui, server)
}
[Package teal version 0.16.0 Index]