library(shiny)
shiny::runApp(list(
##########
ui = basicPage(
wellPanel(plotOutput(outputId = "plot1")),
wellPanel(
div(style="display:inline-block;","qwert"),
div(style="display:inline-block;",
wellPanel("The quick brown fox jumps over the lazy dog"))
),
wellPanel(
div(style="display:inline-block;",
wellPanel(plotOutput(outputId = "plot2"))),
div(style="display:inline-block;",
wellPanel(style="border-color: #8b8b8b; background-color: #ffffff;","qwerty"))
)
),
##########
server = function(input, output, session) {
output$plot1 <- renderPlot({
plot(rnorm(10))
})
output$plot2 <- renderPlot({
plot(1)
})
}
))