MosaicLayoutArgs

data class MosaicLayoutArgs(val columns: Output<Int>? = null, val tiles: Output<List<TileArgs>>? = null) : ConvertibleToJava<MosaicLayoutArgs>

A mosaic layout divides the available space into a grid of blocks, and overlays the grid with tiles. Unlike GridLayout, tiles may span multiple grid blocks and can be placed at arbitrary locations in the grid.

Constructors

Link copied to clipboard
fun MosaicLayoutArgs(columns: Output<Int>? = null, tiles: Output<List<TileArgs>>? = null)

Functions

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

Properties

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

The number of columns in the mosaic grid. The number of columns must be between 1 and 12, inclusive.

Link copied to clipboard
val tiles: Output<List<TileArgs>>? = null

The tiles to display.