-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathex4_sol.R
48 lines (41 loc) · 1.09 KB
/
ex4_sol.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
library(shiny)
zoom = FALSE
ui <- fluidPage(
titlePanel("Hello Cardiff"),
sidebarLayout(
sidebarPanel(
uiOutput("sidebarui"),
# (part 1) place for actionButton
actionButton("go_button", "Go!"),
# (part 2) place for textInput
textInput("name", "Give your name here")
),
mainPanel(
div(style = "background: grey; color: white;",
tags$p("Here is where the action takes place")
),
# (part 2) "welcome_message" textOutput
tags$h3(textOutput("welcome_message")),
tags$img(src="https://media.giphy.com/media/u47skfNmdGSM05XP5G/giphy.gif", width="200px")
)
)
)
server <- function(input, output) {
if (isTRUE(zoom))
output$sidebarui <- renderUI({
tags$h2("This is sidebar")
})
else
output$sidebarui <- renderUI({
tags$h4("This is sidebar")
})
# (part 1) observe event from action button
observeEvent(input$go_button, {
print("Go")
})
# (part 2) renderText
output$welcome_message <- renderText({
paste("Welcome", input$name)
})
}
shinyApp(ui = ui, server = server)