ColumnArgs

data class ColumnArgs(val weight: Output<String>? = null, val widgets: Output<List<WidgetArgs>>? = null) : ConvertibleToJava<ColumnArgs>

Defines the layout properties and content for a column.

Constructors

Link copied to clipboard
fun ColumnArgs(weight: Output<String>? = null, widgets: Output<List<WidgetArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ColumnArgs

Properties

Link copied to clipboard
val weight: Output<String>? = null

The relative weight of this column. The column weight is used to adjust the width of columns on the screen (relative to peers). Greater the weight, greater the width of the column on the screen. If omitted, a value of 1 is used while rendering.

Link copied to clipboard
val widgets: Output<List<WidgetArgs>>? = null

The display widgets arranged vertically in this column.