-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
52 lines (42 loc) · 1.04 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
library(ggplot2)
library(plotly)
library(shiny)
library(bslib)
library(shinydashboard)
library(shinydashboardPlus)
library(shinythemes)
library( shinyWidgets )
source("R/ui/about_ui.R")
source("R/ui/brain_gen_2d_ui.R")
source("R/ui/brain_gen_2d_v2_ui.R")
source("R/ui/brain_gen_3d_v1_ui.R")
source("R/ui/footer_ui.R")
release = "v1.2"
ui <- shinyUI(page_navbar(
title = "SOCR Synthetic Brain Generator",
# theme = shinytheme("cerulean"),
# theme = bs_theme(version = 5),
header = tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
),
footer = footer_ui(),
bg = "#2D89C8",
theme = bs_theme(bootswatch = "minty"),
# theme = bs_theme(version = 5),
inverse = TRUE,
# 3d model panel
brain_gen_3d_v1_panel_ui(),
# version 2 panel
brain_gen_2d_v2_panel_ui(),
# version 1 panel
brain_gen_2d_panel_ui(),
# about panel
about_panel_ui(),
nav_spacer(),
nav_menu(
title = "Links",
align = "right",
nav_item(tags$a("SOCR", href = "https://socr.umich.edu/"))
),
)
)