GridLayoutArgs

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

A basic layout divides the available space into vertical columns of equal width and arranges a list of widgets using a row-first strategy.

Constructors

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

Functions

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

Properties

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

The number of columns into which the view's width is divided. If omitted or set to zero, a system default will be used while rendering.

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

The informational elements that are arranged into the columns row-first.