-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
41 lines (24 loc) · 996 Bytes
/
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
library(shiny)
library(shinythemes)
shinyUI(fixedPage(theme=shinytheme("cerulean"),
tags$style(type="text/css",
".shiny-output-error { visibility: hidden; }",
".shiny-output-error:before { visibility: hidden; }"
),
headerPanel("Mona's up 1: Create your wordcloud"),
tags$img(src="image.png",height=70,width=70),
textInput("text", label = h3("Enter text"), value = "",width=1200),
hr(),
fluidRow(column(12,verbatimTextOutput("value"))),
submitButton(text="Run"),
tabsetPanel(
tabPanel(
"Plot",imageOutput("wordcl",width=1,height=1),
downloadButton("downloadplot","Download Plot")),
tabPanel(
"Table", DT::dataTableOutput("table")
) ),
tags$footer(h5("This Shiny app is powered by:"),align="right",style="position:relative;"),
tags$footer(h5("Mouna Belaid"),align="right",style="position:relative;")
)
)