Our project is using jetpact compose and navigation component .
We have 2 fragments- Fragment A & B . In Fragment A, UI is bit complex because of multiple elements like View Pager and lazycolumn. Lazy column is updated based on the viewpager selection. On selection of a item from lazy column from Fragmnt A it will navigate to Fragment B . We are currently using android navigation component. The problem is navigation component will do fragment replace . Which will recreate Fragment A when onbackpress of Fragment B is called. Because of this we are loosing the UI state of fragment A. We cannot make Fragment B as dialog destination since it should be in stack when Fragment C is opened from Fragment B.
We found 3 solution but all are having some problems.
Save UI state in ViewModel and restore state while recreating Fragment A.
-- We can save the UI state of Viewpager in ViewModel. But saving the list scroll state won't work because list will refresh after viewpager state update. This approach again doing a view recreation which will create performance delay while pressing back from Fragment B
Provide CustomFragmentNavigator after replacing fragment replace with Fragment Add.
-- This will introduce more boiler plate code and We feel its a antipattern since google made fragment replace in navigation purposefully.
Do older Frgament transactions in Fragment A instead of using navigation component. Going with hybrid approach when fragment add is required use older fragment transaction or use Navigation component.
-- Since we are using navhost fragment , Unable to fetch the container ID for doing normal fragment transaction. We have only container fragment in root layout.
Expecting some technical guidance on this problem. What should be the approach to solve this fundamental issue.
According to documentation:
XML example
Compose Examples
More granularly, you can change how you call
NavController.navigate()
in the following ways:See this link for more information: Navigation and the back stack