Before I go ahead and build a custom layout for th...
# compose
j
Before I go ahead and build a custom layout for this I wanted to ask.. is there already a standard Compose layout that achieves this kind of thing depending on its children?:
k
I wouldn't call it standard. Very much specific to your particular design requirements
a
try something like this ?
Copy code
@Composable
fun Example(vararg content:@Composable ()->Unit) {
    LazyVerticalGrid(columns = GridCells.Adaptive(minSize = 100.dp), content = {
        items(content.size){
            content[it]
        }
    })
}
e
Go ahead and build a custom layout @james, its a lot of fun!
j
oh, I’ve already built a few 😄 I would say 50% fun, 50% frustrating 😂 but it’s certainly always rewarding when it’s finished