Skip to contents

[Deprecated] 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)) [Deprecated] 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 deprecated. Use modify_title() on the teal app object instead.

header

(shiny.tag or character(1)) [Deprecated] Optionally, the header of the app. This parameter is deprecated. Use modify_header() on the teal app object instead.

(shiny.tag or character(1)) [Deprecated] Optionally, the footer of the app. This parameter is deprecated. 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.