2
0
Files
maui-linux-samples/ShellDemo/AppShell.xaml.cs
2026-01-11 12:33:48 -05:00

17 lines
341 B
C#

// AppShell - Shell navigation with flyout menu
using Microsoft.Maui.Controls;
namespace ShellDemo;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
// Register routes for push navigation (pages not in flyout)
Routing.RegisterRoute("detail", typeof(DetailPage));
}
}