RowArgs

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

Defines the layout properties and content for a row.

Constructors

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

Functions

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

Properties

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

The relative weight of this row. The row weight is used to adjust the height of rows on the screen (relative to peers). Greater the weight, greater the height of the row 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 horizontally in this row.