Implemented interface member:
method
On<T>
Microsoft.Maui.Controls.IElementConfiguration<TElement>.On<T>()
13 references to On
Microsoft.Maui.Controls (8)
Page\Page.cs (8)
212 bool ISafeAreaView.IgnoreSafeArea => !On<PlatformConfiguration.iOS>().UsingSafeArea(); 221 return page.On<PlatformConfiguration.iOS>().PrefersHomeIndicatorAutoHidden(); 223 return On<PlatformConfiguration.iOS>().PrefersHomeIndicatorAutoHidden(); 233 return (int)page.On<PlatformConfiguration.iOS>().PrefersStatusBarHidden(); 235 return (int)On<PlatformConfiguration.iOS>().PrefersStatusBarHidden(); 245 return (int)page.On<PlatformConfiguration.iOS>().PreferredStatusBarUpdateAnimation(); 247 return (int)On<PlatformConfiguration.iOS>().PreferredStatusBarUpdateAnimation(); 257 On<PlatformConfiguration.iOS>().SetSafeAreaInsets(value);
Microsoft.Maui.Controls.Compatibility (5)
iOS\Renderers\PageRenderer.cs (5)
29 Thickness SafeAreaInsets => Page.On<PlatformConfiguration.iOS>().SafeAreaInsets(); 336 bool usingSafeArea = Page.On<PlatformConfiguration.iOS>().UsingSafeArea(); 374 Page.On<PlatformConfiguration.iOS>().SetSafeAreaInsets(safeareaPadding); 379 Page.On<PlatformConfiguration.iOS>().SetSafeAreaInsets(safeareaPadding); 382 bool usingSafeArea = Page.On<PlatformConfiguration.iOS>().UsingSafeArea();