The example of fluidRow and column given in the Shiny documentation, namely:
ui <- fluidPage(
fluidRow(
column(width = 4,
"4"
),
column(width = 3, offset = 2,
"3 offset 2"
)
)
)
shinyApp(ui, server = function(input, output) { })
produces the following output:
4
offset 2
I thought it was supposed to produce:
4 offset 2
Have I misunderstood? I am running Rstudio version 1.0.143 and R version 3.4.0 on Win10.
NOTE: This does produce the right answer when I click on "Show in Browser", so the problem is less important than I thought.