2
0
Files
maui-linux-samples/ShellDemo/AppShell.xaml.cs

17 lines
341 B
C#
Raw Normal View History

2026-01-11 12:33:48 -05:00
// 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));
}
}