-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate AOT Profilers for Non Shell based apps (#8941)
* Add non shell pages to AOT stack * - AOT Profiles * - update aot from merge * - rerun after merge * - add delay * - run on physical device * - remove old page listener
- Loading branch information
Showing
8 changed files
with
683 additions
and
23 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<FlyoutPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
x:Class="maui.AppFlyoutPage" | ||
xmlns:local="clr-namespace:maui" | ||
Title="AppFlyoutPage"> | ||
<FlyoutPage.Detail> | ||
<local:Tabs Title="Detail"></local:Tabs> | ||
</FlyoutPage.Detail> | ||
<FlyoutPage.Flyout> | ||
<ContentPage Title="Flyout"> | ||
<VerticalStackLayout> | ||
<Label Text="Flyout Item 1"></Label> | ||
<Label Text="Flyout Item 2"></Label> | ||
<Label Text="Flyout Item 3"></Label> | ||
<Label Text="Flyout Item 4"></Label> | ||
</VerticalStackLayout> | ||
</ContentPage> | ||
</FlyoutPage.Flyout> | ||
</FlyoutPage> |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace maui; | ||
|
||
public partial class AppFlyoutPage : FlyoutPage | ||
{ | ||
public AppFlyoutPage() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<TabbedPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
x:Class="maui.Tabs" | ||
xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls" | ||
android:TabbedPage.ToolbarPlacement="Bottom" | ||
Title="Tabs"> | ||
</TabbedPage> |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace maui; | ||
|
||
public partial class Tabs : TabbedPage | ||
{ | ||
public Tabs() | ||
{ | ||
InitializeComponent(); | ||
|
||
Children.Add(new NavigationPage(new MainPage()) { Title = "Tab 1" }); | ||
Children.Add(new NavigationPage(new MainPage()) { Title = "Tab 2" }); | ||
Children.Add(new NavigationPage(new MainPage()) { Title = "Tab 3" }); | ||
} | ||
} |