Skip to contents

This function defines the complete user interface (UI) for the biodiversity dashboard application. It includes setup for the page layout, title, and any external dependencies.

Usage

app_ui(request)

Arguments

request

The request object, typically passed from the Shiny framework when the application is initialized. This enables bookmarking and other server-side features that depend on the request state.

Value

A tagList containing the complete UI definition for the Shiny application.

Details

The UI includes:

  • External JavaScript for timing operations from the shiny.tictoc package

  • The main application page structure defined by the createPage function

Examples

# This function is typically called by shinyApp:
# shinyApp(ui = app_ui, server = app_server)