material_column: Create a column to organize UI content

Description Usage Arguments Examples

View source: R/shiny-material-column.R

Description

UI content can be placed in columns to organize items on a page.

Usage

1

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

1
2
3
4
material_column(
  width = 4,
  shiny::tags$h1("Column Content")
)

Example output

<div class="col s4 offset-s0">
  <h1>Column Content</h1>
</div>

shinymaterial documentation built on Sept. 1, 2020, 1:07 a.m.