Skip to content

LazyVerticalGrid

Same as LazyColumn or LazyRow but columns is required

LazyVerticalGrid(columns = GridCells.Adaptive(minSize = 200.dp)) {
items(data[0].schedule) { schedule ->
Text(schedule.destination)
}
}