GridLayoutResponse

data class GridLayoutResponse(val columns: String, val widgets: List<WidgetResponse>)

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 GridLayoutResponse(columns: String, widgets: List<WidgetResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

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