forked from dotnet/maui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
255 additions
and
9 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
...ontrols/samples/Controls.Sample/Pages/PlatformSpecifics/iOS/iOSHideHomeIndicatorPage.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ContentPage | ||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls" | ||
x:Class="Maui.Controls.Sample.Pages.iOSHideHomeIndicatorPage" | ||
Title="Hide Home Indicator" | ||
ios:Page.PrefersHomeIndicatorAutoHidden="true"> | ||
<StackLayout Margin="20,35,20,20"> | ||
<Label Text="Tap the button below to toggle the home indicator on iPhone X, XR, and XS models." /> | ||
<Button Text="Toggle Home Indicator" | ||
Clicked="OnButtonClicked" /> | ||
Title="Hide Home Indicator"> | ||
<StackLayout> | ||
<Button Text="Navigation page" Clicked="NavigationPage_Clicked"/> | ||
<Button Text="Tabbed page" Clicked="TabbedPage_Clicked"/> | ||
<Button Text="Flyout page" Clicked="FlyoutPage_Clicked"/> | ||
<Button Text="Shell" Clicked="Shell_Clicked"/> | ||
</StackLayout> | ||
</ContentPage> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters