毛小川
03/01/2022, 11:42 AMLazyColumn
, but not compiling.Such as:
LazyColumn(
//
){
mutableStateArrays.forEachIndexed { index, value ->
Row(
modifier = Modifier.padding(top = 10.dp),
horizontalArrangement = Arrangement.Center
) {
OutlinedTextField(
//
)
DropdownMenu(
//
) {
//
}
}
}
}
Albert Chang
03/01/2022, 12:19 PMLazyColumn {
items(mutableStateArrays) { index, value ->
// Row
}
}