use_apputils.Rd
Call this function once near the top of the Shiny UI definition.
use_apputils(use_rintrojs = FALSE, use_shinytoastr = FALSE, force_AdminLTE = FALSE)
use_rintrojs | logical, also loads |
---|---|
use_shinytoastr | logical, also loads |
force_AdminLTE | logical, force load |
HTML tags placed in the head of the app UI HTML file.
Calling use_apputils
loads package css into the head of a Shiny app.
Optionally calls introjsUI()
and/or useToastr()
, in which case the Shiny app must have these packages loaded.
# NOT RUN { use_apputils() use_apputils(force_AdminLTE = TRUE) use_apputils(use_rintrojs = TRUE, use_shinytoastr = TRUE) # }