GridCells

sealed class GridCells

This class describes how cells form columns in vertical grids or rows in horizontal grids.

Inheritors

Types

Link copied to clipboard
class Adaptive(val minSize: Dp) : GridCells

Combines cells with adaptive number of rows or columns. It will try to position as many rows or columns as possible on the condition that every cell has at least minSize space and all extra space distributed evenly.

Link copied to clipboard
class Fixed(val count: Int) : GridCells

Combines cells with fixed number rows or columns.