dotnet / maui

.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
https://dot.net/maui
MIT License
21.86k stars 1.68k forks source link

iOS Page.LargeTitleDisplay does not work on iOS 16.1 Simulators #12156

Open edgiardina opened 1 year ago

edgiardina commented 1 year ago

Description

iOS Specific Platform Directive to show Large Titles is not working

Steps to Reproduce

File -> New .NET MAUI App Create a page with a title you'd like to be large. Apply the Platform Specific iOS Directive to display large titles to the page like so:

<ContentPage 
...
             xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls"
             ios:Page.LargeTitleDisplay="Always"
             Title="Large Title"
... />

The page's title will be normal sized

Link to public reproduction project repository

https://github.com/edgiardina/MauiBug-iOSLargeTitles

Version with bug

7.0 (current)

Last version that worked well

Unknown/Other

Affected platforms

iOS

Affected platform versions

iOS 16.1

Did you find any workaround?

No response

Relevant log output

No response

ghost commented 1 year ago

We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.

edgiardina commented 1 year ago

This is also the case with Navigation Bar Transparency

jinxinjuan commented 1 year ago

Verified this issue with Visual Studio Enterprise 17.7.0 Preview 1.0. Can repro on iOS platform with sample project. MauiBug-iOSLargeTitles