module_teal_with_splash {teal} | R Documentation |
UI and server modules of teal
Description
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) ) shiny module instance id.
|
data |
(teal_data , teal_data_module , or reactive returning teal_data )
The data which application will depend on.
|
modules |
(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.
|
title |
(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.
|
filter |
(teal_slices ) Optionally,
specifies the initial filter using teal_slices() .
|
Value
Returns a reactive
expression containing a teal_data
object when data is loaded or NULL
when it is not.
[Package
teal version 0.16.0
Index]