Rafael Costa
03/25/2023, 3:15 PM[root, A]
. When I navigate from A to B, then I would expect to have [root, A, B]
(like it was before) but now in latest navigation versions (I still haven't figured out what version exactly changed this) I'm getting [root, A, root, B]
.
This can have impact if the user is calling popUpTo(root)
.
Is this known and intended or a regression?Ian Lake
03/25/2023, 3:30 PMroot
(which will create a new copy of root
on the back stack), navigating to B
should reuse the existing copy. File a bug if you are seeing something differentRafael Costa
03/25/2023, 3:33 PMaddEntryToBackStack
). Still gonna do more tests though:2.6.0-alpha05
is the cause of the behaviour I'm seeing.
Only by changing from 2.6.0-alpha04
to 2.6.0-alpha05
I start seeing this behaviour, and it matches the left and right side of the diff image shown above.Ian Lake
04/05/2023, 9:16 PM