Skip to content

Commit d9a0bf2

Browse files
committed
Revert "repro for memory leak (to be reverted)"
This reverts commit bfbdb29.
1 parent 3d6130d commit d9a0bf2

8 files changed

Lines changed: 11 additions & 272 deletions

File tree

src/Controls/samples/Controls.Sample.Sandbox/App.xaml.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ public App()
99

1010
protected override Window CreateWindow(IActivationState? activationState)
1111
{
12-
return new Window(new AppFlyoutPage());
12+
// To test shell scenarios, change this to true
13+
bool useShell = false;
14+
15+
if (!useShell)
16+
{
17+
return new Window(new NavigationPage(new MainPage()));
18+
}
19+
else
20+
{
21+
return new Window(new SandboxShell());
22+
}
1323
}
1424
}

src/Controls/samples/Controls.Sample.Sandbox/AppFlyoutPage.xaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/AppFlyoutPage.xaml.cs

Lines changed: 0 additions & 42 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/Page1.xaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/Page1.xaml.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/Page2.xaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/Page2.xaml.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/Controls/samples/Controls.Sample.Sandbox/Services/NavigationService.cs

Lines changed: 0 additions & 103 deletions
This file was deleted.

0 commit comments

Comments
 (0)