New compose-backstack release is out: <https://twi...
# compose
z
🎉 8
🔥 5
s
Great work, but unfortunately I had to revert to no Animation, because of performance issue on slightly older devices.
z
Did you file a bug (with device and other details, and a reproducer if possible)? I refactored some of the way state was communicated in the transitions in this release that should make more optimizations possible, but haven’t put any real effort into optimizing anything yet.
s
@Zach Klippenstein (he/him) [MOD] The issue is I'm calling some pagingLists like this, which is causing significant delay in launching new Composable. Hence transitions between composable lacks. val list = viewModel.somepagingList.collectAsLazyPagingItems() val list2 = viewModel.somepagingList2.collectAsLazyPagingItems() val list3 = viewModel.somepagingList3.collectAsLazyPagingItems()
z
So
collectAsLazyPagingItems
is taking a while to return?
s
Yup, i think so, because after removing it Composition happens much quicker. But I'm not sure what is the reason for delay?
z
Me neither, i haven’t used that library. Might be worth filing a bug to the google tracker then though
👍 1