VerticalGrid

fun VerticalGrid(modifier: Modifier = Modifier, columns: Int = 2, content: @Composable () -> Unit)

Deprecated

VerticalGrid is deprecated

Replace with

LazyStaticGrid

Author: @Jeluchu

A custom layout to recreate a GridLayout which lays elements out vertically in evenly sized columns

Parameters

modifier

modifier that will be used to change the color, size...

columns

number of columns to be displayed

content

the item to be painted within the layout