material_column {shinymaterial} | R Documentation |
Create a column to organize UI content
Description
UI content can be placed in columns to organize items on a page.
Usage
material_column(..., width = 6, offset = 0)
Arguments
... |
The UI elements to place in the column. |
width |
Integer. The width of the column. The value should be between 1 and 12. |
offset |
Integer. The offset to the left of the column. The value should be between 0 and 11. |
Examples
material_column(
width = 4,
shiny::tags$h1("Column Content")
)
[Package shinymaterial version 1.2.0 Index]