17 lines
341 B
C#
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));
|
|
}
|
|
}
|