anyone know how can I implement something like `ne...
# compose
g
anyone know how can I implement something like
nested scroll lazyColumn
in compose? want to do things like this when I scroll the nested lazy column it got a lot of issues... seems nested lazy column is not recommended but how can I do it with just one lazy column here for
ComposableSubC
Copy code
LazyColumn() {
        items(items){
            MapItem()
        }
    }

    @Composable
    fun MapItem(item){
        when(item){
            itemA->{
                ComposableA()
            }
            itemB->{
                ComposableB()
            }
            itemC->{
                ComposableC()
            }
        }
    }

    ComposableC() {
        ComposableSubC()
        LazyColumn(){
            items{
                ComposableItem()
            }
        }
    }
g
Try to give absolute height to inner lazy column.
k
Pull up all the items to the same level of one single lazy column