Add a column to the row.
row:column(STRING $content, STRING $width="auto", BOOL $display_on_mobile=TRUE, BOOL $display_on_tablet=TRUE, BOOL $display_on_laptop=TRUE, BOOL $display_on_desktop=TRUE, ARRAY $attributes=[ ])
# Adding a column to a row
row:column("Column Content")
# Hiding the column at specified breakpoints
row:column("This column will hide in mobile", display_on_mobile: FALSE)
# You may add as many columns as you wish to a row,
# (if content is overflowing horizontally, the row will automatically become scrollable)
row:column(1)
row:column(2)
row:column(3)
# look up row:flexible_space to learn more about aligning columns
# To render the row with all the added column
:: row:render()
