我正在尝试将文字添加到r闪亮应用的侧边栏中。我尝试按如下方式添加它。我没有得到任何错误,应用程序像以前一样运行,但文本没有填充
dashboardPage(
dashboardHeader(title = "Title of Plot"),
dashboardSidebar(
tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "styles.css")
),
verbatimTextOutput("*Text I Am Trying To Add!!!!"),
uiOutput("view"),
sidebarMenu(id = "sidebarmenu",
uiOutput("studySelectUI"),
downloadButton(outputId = "DataDownload", label = "Download Data")
)
),
dashboardBody(
plotlyOutput("Plot"),
HTML("<br><br>"),
dataTableOutput("Data")
)
)