KotlinLeaner
04/20/2023, 11:13 AMfragment
inside that I am using NestedScrollView
with multiple views inside in my xml
. I am building a new component in the fragment and using ComposeView
. The item which is building have more than 50+ items and it will increase in the future. I cannot rebuild my whole fragment at same time. I am using normal Column
with repeat
function to display item in the ComposeView
but it cost so much performance issue to load item or even to open that fragment. If I change to LazyColumn
and commented the NestedScrollView
in xml. It working fast loading item or opening the fragment. I cannot use LazyColumn
with NestedScrollView
? Is there way we can solve this problem?dewildte
04/20/2023, 4:40 PM@Composable
.
If you can not do that the you might make pragmatic choice to not use compose here until you can refactor the root issue out of existence.KotlinLeaner
04/20/2023, 4:50 PM