RowResponse

data class RowResponse(val weight: String, val widgets: List<WidgetResponse>)

Defines the layout properties and content for a row.

Constructors

Link copied to clipboard
constructor(weight: String, widgets: List<WidgetResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

The display widgets arranged horizontally in this row.