-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
29 lines (26 loc) · 1 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
ui <- material_page(
material_dropdown(input_id = "carrierDropdown", label = "Select Dropdown",
choices = c("American Airline" = "AA",
"United Airline" = "UA",
"Delta Airline" = "DL",
"JetBlue Airways" = "B6",
"American Eagle" = "MQ")),
material_tabs(
tabs = c("DT" = "DT_tab", "gt" = "gt_tab", "ggplot" = "ggplot_tab", "gganimate" = "gganimate_tab")
),
material_tab_content(tab_id = "DT_tab",
material_row(
DT::dataTableOutput("DT_table")
)
),
material_tab_content(tab_id = "ggplot_tab",
material_row(
plotOutput("ggplot_plot")
)
),
material_tab_content(tab_id = "gganimate_tab",
material_row(
imageOutput("gganimate_plot")
)
)
)