related but different than above question: is ther...
# compose
s
related but different than above question: is there a best practice for complex pages? the page contains a BottomSheetScaffold and some sub composables containing lazy rows and columns. I currently use one big state object containing all the lazy list states etc. I have to pass around that state object because a lot of different parts of the page depend on each other. e.g. one list gets scrolled -> another part of the page needs to fade out. This makes the page really complex and hard to test the separate items on it. any best practices or tips are appreciated