I'm using Paging3 and loading multiple paging List in Composable like this
val list = viewModel.somepagingList.collectAsLazyPagingItems()
val list2 = viewModel.somepagingList2.collectAsLazyPagingItems()
val list3 = viewModel.somepagingList3.collectAsLazyPagingItems()
But I noticed, significant delay in loading Composable Screen, but when I remove it, page load time improved. how can i load data lazily without effecting Composable launch?