R Shiny将图片添加到带有文本的流体行中的框中

时间:2017-05-31 08:39:48

标签: r image shiny

我正在尝试添加一个框作为Shiny应用程序的一部分,以在应用程序的顶部包含一些文本(说明)和图像(徽标)。这是我到目前为止的代码。

frow5 <- fluidRow(
  box(
    title = "Instructions"
    ,status = "primary"
    ,solidHeader = FALSE 
    ,collapsible = FALSE 
    ,textOutput("instructions")
    , height = 320
    , width = 12
    , align='ccc'


  )

)

output$instructions <- renderText("Some text")

目前我已经指定了textOuput参数,但是我需要将图像作为同一个框的一部分包含在右边。有什么建议吗?

1 个答案:

答案 0 :(得分:3)

如何在框内添加fluidRow,有2列,一列用于文本,另一列用于图像?

box(title = "Instructions",
    status = "primary",
    solidHeader = F,
    collapsible = F,
    width = 12,
    fluidRow(column(width = 10, textOutput( "instructions" )),
             column(width = 2, align = "center",
                      img(src="http://images.all-free-download.com/images/graphiclarge/natural_beauty_highdefinition_picture_166133.jpg", width=100))))

enter image description here