Please use module_teal
instead.
Usage
ui_teal_with_splash(
id,
data,
title = build_app_title(),
header = tags$p(),
footer = tags$p()
)
srv_teal_with_splash(id, data, modules, filter = teal_slices())
Arguments
- id
(
character
) Optionally, a string specifying theshiny
module id in cases it is used as ashiny
module rather than a standaloneshiny
app. This is a legacy feature.- data
(
teal_data
,teal_data_module
, orreactive
returningteal_data
) The data which application will depend on.- title
(
shiny.tag
orcharacter(1)
) Optionally, the browser window title. Defaults to a title "teal app" with the icon of NEST. Can be created using thebuild_app_title()
or by passing a validshiny.tag
which is a head tag with title and link tag.- header
(
shiny.tag
orcharacter(1)
) Optionally, the header of the app.(
shiny.tag
orcharacter(1)
) Optionally, the footer of the app.- modules
(
list
orteal_modules
orteal_module
) Nested list ofteal_modules
orteal_module
objects or a singleteal_modules
orteal_module
object. These are the specific output modules which will be displayed in theteal
application. Seemodules()
andmodule()
for more details.- filter
(
teal_slices
) Optionally, specifies the initial filter usingteal_slices()
.