Commit 3d0469e
Fix for NavigationPage.TitleView does not expand with host window in iPadOS 26+ (#33088)
<!--
!!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING
MAIN. !!!!!!!
-->
### Issue Description:
On iPadOS 26+, NavigationPage.TitleView does not resize when the window
dimensions change during device rotation, causing the TitleView to
remain at its original width instead of expanding to fill the navigation
bar.
### Root Cause
iOS 26+ changed UIKit's layout behavior so that NavigationItem.TitleView
container frames are no longer automatically updated during
ViewWillTransitionToSize transitions, causing the TitleView to retain
its original dimensions even when the navigation bar resizes.
### Description of Change
Added explicit frame updates for the TitleView Container during view
controller transitions on iOS 26+ by leveraging
AnimateAlongsideTransition to synchronize the Container's frame with the
navigation bar's dimensions, ensuring smooth resizing during rotation
and window size changes.
### Issues Fixed
Fixes #[32722
](#32722)
### Tested the behaviour on the following platforms
- [ ] Android
- [ ] Windows
- [x] iOS
- [ ] Mac
### Note:
This PR extends the behavior introduced in #32815 by adding support for
the iPad scenario. As the earlier PR already provided the necessary test
coverage, no new testcases are included in this follow‑up.
### Output Screenshot
Before Issue Fix | After Issue Fix |
|----------|----------|
|<video width="300" height="150" alt="Before Fix"
src="https://github.com/user-attachments/assets/22f2318e-0cbf-40e4-bbe6-0fb89d22b49f">|<video
width="300" height="150" alt="After Fix"
src="https://github.com/user-attachments/assets/492bac5f-447a-4c1d-9262-e0877053c1f5">|1 parent 7f6db9c commit 3d0469e
File tree
1 file changed
+16
-0
lines changed1 file changed
+16
-0
lines changedLines changed: 16 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1613 | 1613 | | |
1614 | 1614 | | |
1615 | 1615 | | |
| 1616 | + | |
| 1617 | + | |
| 1618 | + | |
| 1619 | + | |
1616 | 1620 | | |
1617 | 1621 | | |
1618 | 1622 | | |
1619 | 1623 | | |
1620 | 1624 | | |
| 1625 | + | |
1621 | 1626 | | |
| 1627 | + | |
| 1628 | + | |
| 1629 | + | |
| 1630 | + | |
| 1631 | + | |
| 1632 | + | |
| 1633 | + | |
| 1634 | + | |
| 1635 | + | |
| 1636 | + | |
| 1637 | + | |
1622 | 1638 | | |
1623 | 1639 | | |
1624 | 1640 | | |
| |||
0 commit comments