I created some lines in brilliant ui as such:
shinyUI (fluidPage (
fluidRow( column(6, textOutput("text_col1_row_1")), column(6 textOutput("text_col2_row_1"))), fluidRow( column(6, textOutput("text_col1_row_2")), column(6, textOutput("text_col2_row_2"))), ))
which creates a nice 4 x 4 mesh.
Shiny seems to be focused on letting users organize objects into columns.
I would like to see if I can organize my screen into something that has two columns, but inside the column, it has two rows - perhaps clearer if I crack a simple illustration:

(This is just a general idea, and so far nothing has been found about the sizes of columns / rows - just like that, you need a bare-bone template for this structure.)
I was looking for documentation and did not seem to find a reasonable solution. If someone thought and decided this or have any ideas, I would like to hear them. Thanks.
source share