Hello! what column layout I use so that the wrappe...
# compose-desktop
u
Hello! what column layout I use so that the wrapped rows is vertical scrollable ,I tried
LazyColumn
, but not compiling.Such as:
Copy code
LazyColumn(
    //
){
    mutableStateArrays.forEachIndexed { index, value ->
        Row(
            modifier = Modifier.padding(top = 10.dp),
            horizontalArrangement = Arrangement.Center
        ) {
            OutlinedTextField(
                //
            )
            DropdownMenu(
                //
            ) {
                //
            }
        }
    }
}
a
Copy code
LazyColumn {
    items(mutableStateArrays) { index, value ->
        // Row
    }
}