Description
openedon Sep 12, 2024
Description
There seems to be an issue with selecting a tab that was previously selected after leaving the page and coming back.
Tab.selection.problem.mov
Steps to Reproduce
Initial setup for sample project:
- Create a new MAUI app. This is NOT a shell app.
- On the main page add a button that, when clicked, pushes a new tabbed page onto the navigation stack.
- On the tabbed page, include two (or more) pages as content.
See the included project link for a sample project. It's in the TabbedPageSelection folder in the repository.
Reproduction steps with sample project:
- Click the button on the main page to push the tabbed page into view. Two tabs should be displayed.
- Select the second tab.
- Press the back button to exit the tabbed page.
- Click the button the push a new tabbed page.
- Try selecting the second tab.
Expected Result:
The second tab is selected.
Actual Result:
The selection fails. Clicking on the second tab doesn't respond. Tabbed page remains displaying the first tab.
Link to public reproduction project repository
https://github.com/git103/MAUI_Issues
Version with bug
9.0.0-rc.1.24453.9
Is this a regression from previous behavior?
Yes, this used to work in Xamarin.Forms
Last version that worked well
Unknown/Other
Affected platforms
Windows
Affected platform versions
No response
Did you find any workaround?
In the OnBackButtonPressed override on the tabbed page, set the CurrentPage = Children.First(). Essentially reseting selected tab back to the default first tab before leaving the tabbed page. Setting CurrentPage to null doesn't work, it seems to have to be the first tab.
Relevant log output
No response