11 references to LargeTitleDisplayMode
Microsoft.Maui.Controls (7)
PlatformConfiguration\iOSSpecific\Page.cs (7)
166
public static readonly BindableProperty LargeTitleDisplayProperty = BindableProperty.Create(nameof(LargeTitleDisplay), typeof(
LargeTitleDisplayMode
), typeof(Page),
LargeTitleDisplayMode
.Automatic);
173
public static
LargeTitleDisplayMode
GetLargeTitleDisplay(BindableObject element)
175
return (
LargeTitleDisplayMode
)element.GetValue(LargeTitleDisplayProperty);
183
public static void SetLargeTitleDisplay(BindableObject element,
LargeTitleDisplayMode
value)
193
public static
LargeTitleDisplayMode
LargeTitleDisplay(this IPlatformElementConfiguration<iOS, FormsElement> config)
204
public static IPlatformElementConfiguration<iOS, FormsElement> SetLargeTitleDisplay(this IPlatformElementConfiguration<iOS, FormsElement> config,
LargeTitleDisplayMode
value)
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\NavigationRenderer.cs (4)
1438
var
largeTitleDisplayMode = page.OnThisPlatform().LargeTitleDisplay();
1441
case
LargeTitleDisplayMode
.Always:
1444
case
LargeTitleDisplayMode
.Automatic:
1447
case
LargeTitleDisplayMode
.Never: