The below is broken on latest build ``` Scrol...
# compose-desktop
g
The below is broken on latest build
Copy code
ScrollableColumn(modifier = Modifier.fillMaxSize()) {
            FlowRow(
                mainAxisSpacing = 32.dp,
                crossAxisSpacing = 32.dp,
                crossAxisAlignment = FlowCrossAxisAlignment.Center,

                ) {
                getCard(0, "Redis")
                getCard(1, "Prs-Mock")
                getCard(2, "Searcher")
                getCard(3, "DynamoDB")
                getCard(0, "Redis")
                getCard(1, "Prs-Mock")
                getCard(2, "Searcher")
                getCard(3, "DynamoDB")

            }
        }
I've replaced to Lazycolumn and flow row -> LazyRow and getting the following errors,
@Composable invocations can only happen from the context of a @Composable function
d
You need to call each getCard inside a
item { .... }
.
👆 3