inst/shiny/ui.R

library(shiny)
library(shinythemes)
library(shinycssloaders)
library(shinyjs)
library(DT)
library(normfluodbf, lib.loc = Sys.getenv('lib.loc'))
source(file.path("ui", "helpers.R"))

tagList(
  shinydisconnect::disconnectMessage2(), #shiny disconnect message
  useShinyjs(), #use shinyjs
  tags$head(
    shinythemes::themeSelector(), #united is my best-ubuntu vibe
    tags$script(src = "normfluodbf.js"),
    tags$link(href = "styles.css", rel = "stylesheet")

  ),
  div(id = "loading-content", "App loading...might take a few seconds",
      img(src = "waiting.gif")),

  navbarPage(
    title = tags$b('Normfluodbf'),
    windowTitle = "normfluodbf",
    id = "main_nav",
    inverse = FALSE,
    fluid = TRUE,
    collapsible = FALSE,
    source(file.path("ui", "tab-dataset.R"),  local = TRUE)$value
  )
)

Try the normfluodbf package in your browser

Any scripts or data that you put into this service are public.

normfluodbf documentation built on Nov. 6, 2025, 1:12 a.m.