Please use
module_teal instead.
Usage
ui_teal_with_splash(
id,
data,
modules,
title = build_app_title(),
header = tags$p(),
footer = tags$p()
)
srv_teal_with_splash(id, data, modules, filter = teal_slices())Arguments
- id
(
character(1))shinymodule instance id.- data
(
teal_data,teal_data_module, orreactivereturningteal_data) The data which application will depend on.- modules
(
teal_modules)teal_modulesobject. These are the specific output modules which will be displayed in thetealapplication. Seemodules()andmodule()for more details.- title
(
shiny.tagorcharacter(1))Optionally, the browser window title. Defaults to a title "teal app" with the icon of NEST. Can be created using the
build_app_title()or by passing a validshiny.tagwhich is a head tag with title and link tag. This parameter is no longer supported. Usemodify_title()on the teal app object instead.- header
(
shiny.tagorcharacter(1))Optionally, the header of the app. This parameter is no longer supported. Use
modify_header()on the teal app object instead.(
shiny.tagorcharacter(1))Optionally, the footer of the app. This parameter is no longer supported. Use
modify_footer()on the teal app object instead.- filter
(
teal_slices) Optionally, specifies the initial filter usingteal_slices().