teal
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())
Returns a reactive
expression containing a teal_data
object when data is loaded or NULL
when it is not.
(character(1)
) shiny
module instance id.
(teal_data
, teal_data_module
, or reactive
returning teal_data
)
The data which application will depend on.
(teal_modules
)
teal_modules
object. These are the specific output modules which
will be displayed in the teal
application. See modules()
and module()
for
more details.
(shiny.tag
or character(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 valid shiny.tag
which is a head tag with title and link tag.
This parameter is no longer supported. Use modify_title()
on the teal app object instead.
(shiny.tag
or character(1)
) Optionally,
the header of the app.
This parameter is no longer supported. Use
modify_header()
on the teal app object instead.
(shiny.tag
or character(1)
) Optionally,
the footer of the app.
This parameter is no longer supported. Use
modify_footer()
on the teal app object instead.
(teal_slices
) Optionally,
specifies the initial filter using teal_slices()
.